我想使用自定义属性对 Magento 中的 Varien_Object 进行排序。
我得到了这样的东西:
$thing_1 = new Varien_Object();
$thing_1->setName('Richard');
$thing_1->setOrder(2);
$thing_2 = new Varien_Object();
$thing_2->setName('Jane');
$thing_2->setOrder(1);
$collection_of_things = new Varien_Data_Collection();
$collection_of_things
->addItem($thing_1)
->addItem($thing_2);
我想对它进行 ASC 排序,以便Jane
可以在前面Richard
谢谢。