How to disable PHP short open tags?
Posted on In QASome of my pages has XML tags like ‘<?xml ?>’ which are considered by PHP as short open tags ‘<? ?>’. How to disable PHP short open tags?
In PHP, to disable the short open tags, you can set the variable
short_open_tags = FALSE;
in your php.ini
.
Reference: short_open_tags in php.ini