mirror of
https://github.com/php/php-src.git
synced 2026-04-19 05:51:02 +02:00
20 lines
358 B
PHP
20 lines
358 B
PHP
--TEST--
|
|
XSLTProcessor::importStylesheet() - Test with invalid stylesheet
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('xsl')) {
|
|
exit('Skip - XSL extension not loaded');
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
$xslt = new XSLTProcessor();
|
|
$dummy = new stdClass();
|
|
var_dump($xslt->importStylesheet($dummy));
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Warning: Invalid Document in %s on line %d
|
|
bool(false)
|