1--TEST-- 2Test the basics to function XSLTProcessor::hasExsltSupport() when the xsl extension os not available. 3--CREDITS-- 4Rodrigo Prado de Jesus <royopa [at] gmail [dot] com> 5--SKIPIF-- 6<?php (!extension_loaded('xsl')) or die('skip xsl extension is available'); ?> 7--FILE-- 8<?php 9$proc = new XSLTProcessor(); 10var_dump($proc->hasExsltSupport()); 11?> 12--EXPECTF-- 13Fatal error: Class 'XSLTProcessor' not found in %s on line %i 14