|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2011-07-27 06:30 UTC] laruence@php.net
-Type: Bug
+Type: Documentation Problem
[2013-01-03 19:53 UTC] philip@php.net
[2013-01-03 19:55 UTC] philip@php.net
-Status: Open
+Status: Closed
-Assigned To:
+Assigned To: philip
[2013-01-03 19:55 UTC] philip@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 21:00:02 2025 UTC |
Description: ------------ The PHP manual says that XSLTProcessor::getParameter returns NULL for unset paremeters. However it seems that it results in the return value (bool)false. Test script: --------------- $xsl = new XSLTProcessor(); var_dump($xsl->getParameter("", "foobar")); Expected result: ---------------- NULL Actual result: -------------- bool(false)