Unexpected PHP error: Not yet implemented -


i've upgraded environment php 5.6 , code generating warning when runs:

warning: cpage::findonpagelinks(): not yet implemented in / .. /crawler/page.class.php on line 162 

stepping through code , enters function , throws error when try step through - seemingly - unrelated array.

i'm baffled coming , means.

it's being thrown when try step through list of xml nodes:

$xpath = new domxpath( $this->xml ); set_error_handler( array( $this, 'xmlerrorhandler' ) ); $nodelist = $xpath->query( $xpathquery ); restore_error_handler();  foreach( $nodelist $node ) # <<<<--- 

php $xpath->query expression not working

bug in php seems.

https://bugs.php.net/bug.php?id=61858&edit=1


Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -