Created
November 14, 2015 12:29
-
-
Save e2kaneko/cf832f2157b89fbf454a to your computer and use it in GitHub Desktop.
MagentoのModel操作メモ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 空エンティティ作成 | |
$customer = Mage::getModel('customer/customer'); | |
// 一件取得 | |
$customer = Mage::getModel('customer/customer')->load(1); | |
// 全件 | |
$customers = Mage::getModel('customer/customer')->getCollection()->getData(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment