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