|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-04-30 10:38 UTC] bjori@php.net
[2006-05-01 07:28 UTC] michiel at leegwtr dot demon dot nl
[2006-05-16 03:11 UTC] ramsey@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 19 22:00:02 2025 UTC |
Description: ------------ The code listing in the webpage of php.net in the section DOMDocument::load() shows $doc=DOMDocument::load('blabla'); ..... which is inconsistent with the method description which states that a bool is returned, not an Object. It should state: $doc = new DOMDocument(); $doc->load('blabla');