mirror of
https://github.com/php/php-src.git
synced 2024-12-11 19:04:38 +08:00
20 lines
448 B
PHP
20 lines
448 B
PHP
--TEST--
|
|
Check xsltprocessor::getparameter functionality
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('xsl')) {
|
|
die("skip\n");
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
include dirname(__FILE__) .'/prepare.inc';
|
|
$proc->importStylesheet($xsl);
|
|
$proc->setParameter('', 'key', 'value');
|
|
var_dump($proc->getParameter('', 'key'));
|
|
--EXPECTF--
|
|
%string|unicode%(5) "value"
|
|
--CREDITS--
|
|
Christian Weiske, cweiske@php.net
|
|
PHP Testfest Berlin 2009-05-09
|