以是,php中语法检讨是非常有必要的,如果不检讨语法,则在发生缺点时无法正常事情,如果同时实行语法检讨,则可能不会发生该缺点。

今早,在php中文网学到了这个技能点

PHP lint静态检讨

php语法检查php调试之语法检讨 Vue.js

准备一个缺点代码文件,存为test.php:

<?phpecho \公众error\"大众

命令行下实行

php -l test.php

实行结果

PHP Parse error: syntax error, unexpected end of file, expecting ',' or ';' in test.php on line 2 Parse error: syntax error, unexpected end of file, expecting ',' or ';' in test.php on line 2 Errors parsing test.php

明显缺点提示第二行短缺;(分号)结尾

改正后,再次实行

No syntax errors detected in test.php

没有了缺点提示!