标签: php magento object magento-1.7
我想要一个简单的代码片段,它会查看一个对象并确定它是否是一个有效的Varien对象(而不是标准的PHP对象)。
例如
if ( this is a varien_object ) do this.. else do something else
答案 0 :(得分:5)
使用PHP instanceof运算符
if ($this instanceof Varien_Object ) do this..