我有两个对象,在 Yii 框架中我们可以这样做:
$objectOne = Anything::model(); //and this is one object;
$objectTwo = Anything::model()->findByPk("1"); //and this is another object of the same class;
所以现在如果我比较这两者,它将返回 0,false,但我想比较的只是对象的实例,类本身,而不是属性或值......我知道在 Zend Framework 中我们可以做通过设置函数的参数来接收类似这样的东西:
public function anything ( Anything_Entity $something ){}
这样一来,事情就可以很好地工作,但是我找不到任何方法来比较具有要忽略的属性的对象。