1--TEST-- 2Check xsltprocessor::getparameter functionality 3--EXTENSIONS-- 4xsl 5--FILE-- 6<?php 7include __DIR__ .'/prepare.inc'; 8$proc->importStylesheet($xsl); 9$proc->setParameter('', 'key', 'value'); 10var_dump($proc->getParameter('', 'key')); 11?> 12--EXPECT-- 13string(5) "value" 14--CREDITS-- 15Christian Weiske, cweiske@php.net 16PHP Testfest Berlin 2009-05-09 17