mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00

This is a mix of more automated and manual migration. It should remove all applicable extension_loaded() checks outside of skipif.inc files.
13 lines
260 B
PHP
13 lines
260 B
PHP
--TEST--
|
|
Test the basics to function XSLTProcessor::hasExsltSupport().
|
|
--CREDITS--
|
|
Rodrigo Prado de Jesus <royopa [at] gmail [dot] com>
|
|
--EXTENSIONS--
|
|
xsl
|
|
--FILE--
|
|
<?php
|
|
$proc = new XSLTProcessor();
|
|
var_dump($proc->hasExsltSupport());
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|