mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
16 lines
347 B
PHP
16 lines
347 B
PHP
--TEST--
|
|
Check xsltprocessor::getparameter functionality
|
|
--EXTENSIONS--
|
|
xsl
|
|
--FILE--
|
|
<?php
|
|
include __DIR__ .'/prepare.inc';
|
|
$proc->importStylesheet($xsl);
|
|
$proc->setParameter('', 'key', 'value');
|
|
var_dump($proc->getParameter('', 'key'));
|
|
?>
|
|
--EXPECT--
|
|
string(5) "value"
|
|
--CREDITS--
|
|
Christian Weiske, cweiske@php.net
|
|
PHP Testfest Berlin 2009-05-09
|