为了进行调试,我在一个方法的if-else-if部分输入了两个回声:
if ( $options instanceof Zend_Config ) {
$options = $options->toArray();
echo "1st condition true<br>";
} else if ( ! is_array($options) ) {
echo "2nd condition true<br>";
exit();
throw new Bvb_Grid_Exception('options must be an instance from Zend_Config or an array');
}
疯狂的是我得到的输出是:
1st condition true
2nd condition true
你能解释一下吗?!?!
答案 0 :(得分:7)
唯一的解释是你要两次打电话给那个例程。
问题不在于您发布的那段代码。这是另一回事。