|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-03-03 06:10 UTC] chregu@php.net
[2004-03-03 07:34 UTC] pet at iv dot ua
[2004-03-03 07:51 UTC] pet at iv dot ua
[2004-03-06 13:52 UTC] iliaa@php.net
[2004-03-11 09:27 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 13:00:01 2025 UTC |
Description: ------------ Its undocumented arguments of function domxml_open_mem but on previous version php all work. Note: no return "well-formed" errors. If document not valid errors returned Reproduce code: --------------- //not well-formed document $xml = '<text><tt></test>'; $dom = domxml_open_mem($xml, DOMXML_LOAD_VALIDATING, $Errors); if(!Empty($Errors)){ echo "Error found" }else{ echo "Document valid" } Expected result: ---------------- Error found Actual result: -------------- Document valid