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