Jump to content

PHP Versions Question


monkeybidz

Recommended Posts

This i pasted from the php.ini setting

 

; Allow the <? tag.  Otherwise, only <?php and <script> tags are recognized.

; NOTE: Using short tags should be avoided when developing applications or

; libraries that are meant for redistribution, or deployment on PHP

; servers which are not under your control, because short tags may not

; be supported on the target server. For portable, redistributable code,

; be sure not to use short tags.

short_open_tag = on

 

If it is set on <? and <?php will work, but <? is not recommended read the quote above.

Link to comment
https://forums.phpfreaks.com/topic/72075-php-versions-question/#findComment-363205
Share on other sites

The difference between <? and <?php is a configuration option (short_open_tag), best to use the long one as it can confuse the paser seeing as xml also using <? as its opening tag.

 

The difference between $arr[var] and $arr['var'] is the first one is invalid syntax, no matter what version your using it will produce a notice. Once again, notices can be turned off within the php.ini but its best to use the correct syntax in the first place.

Link to comment
https://forums.phpfreaks.com/topic/72075-php-versions-question/#findComment-363206
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.