mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
17 lines
379 B
PHP
17 lines
379 B
PHP
--TEST--
|
|
Check xsltprocessor::removeParameter functionality
|
|
--EXTENSIONS--
|
|
xsl
|
|
--FILE--
|
|
<?php
|
|
include __DIR__ .'/prepare.inc';
|
|
$proc->importStylesheet($xsl);
|
|
$proc->setParameter('', 'key', 'value');
|
|
$proc->removeParameter('', 'key');
|
|
var_dump($proc->getParameter('', 'key'));
|
|
?>
|
|
--EXPECT--
|
|
bool(false)
|
|
--CREDITS--
|
|
Christian Weiske, cweiske@php.net
|
|
PHP Testfest Berlin 2009-05-09
|