测试 PHP 代码的快捷方式
拥有一个 python 解释器非常有用,因为它可以让您快速输入一些命令并验证输出;使其更容易理解语法。
然而,在 PHP 中,每次我想尝试一些东西时,我都必须创建一个 PHP 脚本,保存它,然后在浏览器中运行它。
我错过了 PHP 是否有一个可以让事情变得更简单的快捷方式?
Having a python interpreter is really useful as it lets you quickly type in few commands and verify output; making it easier to understand syntax.
However, in PHP, every time I want to try something out I have to - create a PHP script, save it, run it in my browser.
Is there a shortcut that I am missing out on for PHP that would make things simpler?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以在交互模式下运行 php CLI ;)
在交互模式下,您需要输入带有开始和结束标记的脚本
You can run php CLI in interactive mode ;)
in interactive mode you need to type the script with start and end tags
使用 PHP 设计器。这将使您的工作变得更加轻松。
Use PHP Designer. It will make your job much easier.
或者你可以使用 phpUnit ,php 的单元测试
Or you could use phpUnit , unit testing for php