七零部落格
思则大道至简,疑则谜团重重!
思则大道至简,疑则谜团重重!
1.使用命令行检查php语法错误:
php的命令行模式参考::http://www.yesky.com/imagesnew/software/php/zh/features.commandline.html
$php -l t.php
t.php代码:
运行 php -l php之后:Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in t.php on line 2
将修改正确的代码重新运行 ,结果为:No syntax errors detected in t.php
2.
3.php手册中有这个函数 php_check_syntax()函数 但是:注意: For technical reasons, this function is deprecated and removed from PHP. Instead, use php -l somefile.php from the commandline.