|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-12-16 20:03 UTC] derick@php.net
[2004-12-17 07:47 UTC] chregu@php.net
[2004-12-18 22:41 UTC] tom at whyscream dot net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 18:00:01 2025 UTC |
Description: ------------ The HTML that is generated by DomDocument::saveHTML() (and probably saveHTMLFile() too) does not validate as XHTML (as in '1.0 Transitional'). In stead it follows common practice for HTML4. Since some time, it's Good Practice (TM) to use simple rules like: - always give a value to an attribute - close single-tag elements with a '/>' instead of '>' etc. All common browsers understand this syntax, even when a HTML 4.0 DTD is specified. With the current implementation, it's impossible to create valid XHTML (snippets) using the php5 DOM extension. Reproduce code: --------------- $doc = new DomDocument(); $input = $doc->createElement('input'); $input->setAttribute('type', 'checkbox'); $input->setAttribute('checked', 'checked'); $doc->appendChild($input); echo $doc->saveHTML(); Expected result: ---------------- This should generate a string like: <input type="checkbox" checked="checked" /> which is valid XHTML. Actual result: -------------- The generated string looks like this: <input type="checkbox" checked> This code gives 2 parse errors: - no value for attribute 'checked' - end tag for 'input' omitted (i,e, missing the forward slash)