在 Linux 命令行中运行 PHP

发布于 2024-11-30 16:37:35 字数 175 浏览 3 评论 0原文

我编写了一个名为 phpinfo.php 的测试文件,其 CentOS 中的路径是 /var/www/html/phpinfo.php。没有浏览器,有没有办法运行文件并查看输出?

I wrote a test file named phpinfo.php which path in CentOS is /var/www/html/phpinfo.php. There is no browser, is there a way to run the file and see the output?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

吐个泡泡 2024-12-07 16:37:35

是的。

 - php /var/www/html/phpinfo.php
 - curl http://localhost/phpinfo.php

第一个从命令行运行脚本,第二个从网络服务器获取它(假设您已正确配置它)

Yes.

 - php /var/www/html/phpinfo.php
 - curl http://localhost/phpinfo.php

The first runs the script from commandline, the second fetches it from the webserver (this assumes you've configured it correctly)

中二柚 2024-12-07 16:37:35

如果您想直接在命令行上运行它(这似乎不太可能,因为您已将文件放在 webroot 中):

php /path/to/script.php

如果您想通过网络服务器访问它,那么您需要确保服务器配置为运行 PHP 脚本,然后发出 HTTP 请求。使用网络浏览器是执行此操作的最简单方法。安装一个或在另一台可以通过网络访问服务器的计算机上使用一个。

If you want to run it directly on the command line (which seems unlikely as you have placed the file in the webroot):

php /path/to/script.php

If you want to access it through the webserver then you need to make sure the server is configured to run PHP scripts, and then make an HTTP request. Using a web browser is the easiest way to do this. Either install one or use one on another machine with network access to the server.

甜味拾荒者 2024-12-07 16:37:35

如果您只对 phpinfo() 的输出感兴趣,您可以从命令行看到相同的信息:

php -i

这会以控制台友好的格式打印它,而不是像 那样以样式化的 HTML 打印。显示 phpinfo()

If you are only interested in the output of phpinfo() you can see the same information from the command line with:

php -i

This prints it in a console-friendly format, rather than in styled HTML as phpinfo() displays.

亽野灬性zι浪 2024-12-07 16:37:35

你需要使用。

php /var/www/html/phpinfo.php 

You need to use.

php /var/www/html/phpinfo.php 
万劫不复 2024-12-07 16:37:35

你通常会这样做:

php /var/www/html/phpinfo.php

You would usually do something like this:

php /var/www/html/phpinfo.php

沧笙踏歌 2024-12-07 16:37:35

您可以使用命令行:

php /var/www/html/phpinfo.php

you can use the command-line:

php /var/www/html/phpinfo.php
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文