记事本中的 PHP 语法检查++
notepad++ 是否有一个插件,允许通过编译器运行文件以进行简单的语法检查?比如抓失踪;或不匹配的大括号计数等?
is there a plugin for notepad++ that allows for files to be run through a compiler for simple syntax checking? such as to catch missing ; or or non-matching brace counts, etc.?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我自己没有测试过,但您应该能够使用运行命令 (F5) 和 PHP 的 Windows 二进制文件来完成此操作。
您最可能需要的命令如下:
cmd /K c:\path\to\php.exe -l $(FULL_CURRENT_PATH)
Not tested myself, but you should be able to do this with the Run Command (F5) and a windows binary of PHP.
The command you most likely would want is as follows:
cmd /K c:\path\to\php.exe -l $(FULL_CURRENT_PATH)
我不这么认为。使用 Netbeans PHP。这很棒。自从我切换到它之后我就没有回头
I don't think so. Use Netbeans PHP. It's great. I haven't looked back since I switched to it