|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-06-10 11:29 UTC] tony2001@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Dec 14 17:00:01 2025 UTC |
Description: ------------ just a suggestion for short_open_tag When it's ON, can parser ignore everything that is not "<?php", "<?=", "<? " i.e. like <?xml, <?blah ... etc. and allow things like <?= work as designed this is similar to bug/suggestion #26392 see example Thanks Reproduce code: --------------- file: data.xml <?xml version="1.0" ?> <data> <test><?=$value?></test> </data> file data.php $value = 5; include('data.xml'); // error Expected result: ---------------- xml output with xml header Actual result: -------------- parser error