mirror of
https://github.com/php/php-src.git
synced 2026-04-27 18:23:26 +02:00
7485978339
This is an automated migration of most SKIPIF extension_loaded checks.
17 lines
453 B
PHP
17 lines
453 B
PHP
--TEST--
|
|
Bug #48221 (memory leak when passing invalid xslt parameter)
|
|
--EXTENSIONS--
|
|
xsl
|
|
--FILE--
|
|
<?php
|
|
include('prepare.inc');
|
|
$proc->importStylesheet($xsl);
|
|
$proc->setParameter('', '', '"\'');
|
|
$proc->transformToXml($dom);
|
|
?>
|
|
--EXPECTF--
|
|
Warning: XSLTProcessor::transformToXml(): Cannot create XPath expression (string contains both quote and double-quotes) in %s on line %d
|
|
--CREDITS--
|
|
Christian Weiske, cweiske@php.net
|
|
PHP Testfest Berlin 2009-05-09
|