我最近将我的环境升级到PHP 5.6,现在我的代码在运行时生成警告:
Warning: CPage::findOnPageLinks(): Not yet implemented in / .. /crawler/page.class.php on line 162
单步执行代码并成功进入函数,然后当我尝试单步执行看似无关的数组时抛出该错误。
我对这来自何处及其含义感到困惑。
当我尝试单步执行XML节点列表时,它会被抛出:
$xpath = new DOMXPath( $this->xml );
set_error_handler( array( $this, 'XMLerrorHandler' ) );
$nodeList = $xpath->query( $xPathQuery );
restore_error_handler();
foreach( $nodeList as $node ) # <<<<---
答案 0 :(得分:1)