no.
--
normally, one uses "<?php" to start php code. one uses "<?xml" to start an xml document.
so if one turns on php short open tags ("<?"), will that break the xml documents? no.
presumably because php also looks for the space. so php will match "<? xml" but not "<?xml". or in regexp language, php matches #<[\?] #, not #<[\?]#.
--
ref:
me on a blog
bsdlite
thinks darkness is his ally
well,
it was reported as a bug that the php project won't fix in 4.3.2. so at some point it was a problem, but now it's fine. i guess they decided to fix it since then.
phi_
... and let the Earth be silent after ye.
bsdlite
thinks darkness is his ally
Isn't short_open_tag off by default in PHP 5.3+? IIRC it's going to be removed completely in PHP 6.
Chiken
Don't Let Your Walls Down
Right. I always use the print '<?xml ...'; out of habit anyway ... Never hurts to be compatible with older php versions ...