mirror of
https://github.com/php/php-src.git
synced 2025-01-06 02:43:34 +08:00
35890db0a1
to be used on anything production, if you want to test it, beware, it may or may not work (feel free to complain to me if it doesn't work, or shower praise if it does work)... Mainly in PHP's CVS so that work on the other backends can take place. The api (function_entry) is what I'm thinking of for all backends. Every backend simply needs to define these functions, I'll send an e-mail describing all this in a bit....
12 lines
208 B
PHP
12 lines
208 B
PHP
--TEST--
|
|
Check for xslt presence
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("xslt")) print "skip"; ?>
|
|
--POST--
|
|
--GET--
|
|
--FILE--
|
|
<?php
|
|
echo "xslt extension is available";
|
|
?>
|
|
--EXPECT--
|
|
xslt extension is available
|