php-src/ext/xsl/tests/xsltprocessor_hasExsltSupport.phpt

13 lines
332 B
PHP

--TEST--
Test the basics to function XSLTProcessor::hasExsltSupport().
--CREDITS--
Rodrigo Prado de Jesus <royopa [at] gmail [dot] com>
--SKIPIF--
<?php extension_loaded('xsl') or die('skip xsl extension is not available'); ?>
--FILE--
<?php
$proc = new XSLTProcessor();
var_dump($proc->hasExsltSupport());
?>
--EXPECTF--
bool(true)