Javascript debugger Website design ↑
XSLTProcessor { bool hasExsltSupport();}
bool hasExsltSupport();
This method determine if PHP was built with the » EXSLT library.
Returns TRUE on success or FALSE on failure.
TRUE
FALSE
<?php $proc = new XSLTProcessor; if (!$proc->hasExsltSupport()) { die('EXSLT support not available'); } // do EXSLT stuff here .. ?>
Javascript debugger Website design