我正在尝试学习如何使用Magento模型,但我变得非常不耐烦并且不断被客户电话打断....有人可以告诉我如何实现以下目标:
SELECT * FROM usertable WHERE emaillike '%gmail%' and taxnumber = 300
//Then print the results in php
我正在寻找可能类似于
的代码$model = new UserTable();
$results = $model->getWhere(array('email'=>'%gmail%', tax=>300));
print_r($results);
或者那种效果;
答案 0 :(得分:3)
$customer = Mage::getModel('customer/customer');
$collection = $customer->getCollection()
->addAttributeToFilter('taxvat', 300)
->addAttributeToFilter('email', array('like'=>'%gmail%'))
->load();
print_r($collection->toArray());
P.S。当你有时间the knowledge base做一个好的入门。