Home >Backend Development >PHP Tutorial >代码运行在win5.3.13正常 但是在linux5.2.8 中出现syntax error,unexpected T_STRING .
PHP 错误
先看代码。<?php header('Content-type: text/xml'); ?><?xml version="1.0" encoding="utf-8" ?><return> <code><?php echo $code; ?> <?php if(isset($message)): ?> <message><?php echo $message; ?></message> <?php endif; ?></return>
<?php header('Content-type: text/xml'); echo '<?xml version="1.0" encoding="utf-8" ?>'; ?><return> <code><?php echo $code; ?> <?php if(isset($message)): ?> <message><?php echo $message; ?></message> <?php endif; ?></return>
你的服务器端的php,启用了短标记
对于 php代码开始
xml 一个无效的名称
很简单,你开启了php.ini中的short_open_tags的功能了, short_open_tag