I just installed php 5.3.0 and it won't run php scripts utilizing short open tags like <?, only <?PHP.
相关问题
- Views base64 encoded blob in HTML with PHP
- How does the setup bootstrapper detect if prerequi
- Laravel Option Select - Default Issue
- PHP Recursively File Folder Scan Sorted by Modific
- Can php detect if javascript is on or not?
http://us2.php.net/manual/en/ini.core.php
you need to
or adjust your systems php.ini file.
That's because it's simply a bad practice. I suggest re-converting all your scripts to use
<?php
. If you're lazy, you can use a find and replace, if you have access to powerful command lines like bash you can use sed to do this for you.You need to update your php.ini file.
Set short_open_tag = 1
See the PHP Manual