Short-open (SGML-style) tags

PHP programming
admin
Site Admin
Posts:7390
Joined:Wed Mar 13, 2019 6:42 am
Contact:
Short-open (SGML-style) tags

Post by admin » Sat Apr 27, 2019 8:15 pm

Short or short-open tags look like this:
<?...?>
Short tags are, as one might expect, the shortest option You must do one of two things to enable PHP to recognize the tags:

 Choose the --enable-short-tags configuration option when you're building PHP.

 Set the short_open_tag setting in your php.ini file to on. This option must be disabled to parse XML with PHP because the same syntax is used for XML tags
(XML:extensible markup language)

Post Reply