<?php
error_reporting(E_ALL);
// This method determines if PHP was built with the EXSLT library
$proc = new XSLTProcessor;
// might receive --> Fatal error: Class 'XSLTProcessor' not found in ******** on line 6
if (!$proc->hasExsltSupport())
{
die('EXSLT support NOT available');
}
print "Found EXSLT support available<br>\n"
?>