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