xsltprocessor_getParameter-invalidparam.phpt 289 B

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