|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-11-25 05:13 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 19 20:00:01 2025 UTC |
Description: ------------ There should be another setting in php.ini so that short_open_tag differentiates between <? print('Hi!') ?> and <?= 'Hi!' ?> It should be useful to disable the <? tag as otherwise PHP will attempt to parse <?xml-stylesheet href="http://www.w3.org/StyleSheets/TR/W3C-REC.css" type="text/css"?> which is undesired behaviour. One way to counter the above mentioned problem would be to echo '<?xml-stylesheet href="http://www.w3.org/StyleSheets/TR/W3C-REC.css" type="text/css"?>' but having the ability to disable <? would be nice.