php cli 在我的网络服务器中不起作用

发布于 2024-12-07 00:42:28 字数 311 浏览 1 评论 0原文

我正在尝试使用命令行在我的网络服务器中运行 php 文件,

php test.php

但它不起作用。它永远运行并占用 100% 的资源。 昨天还可以用,现在就不行了。

我尝试使用调试过程

strace -p <pid>

并得到很多

times(NULL) = -2058427839

可以有人帮助我调试这个吗?重启和升级是我最后的手段。请建议一个无需重新启动或升级的解决方案。

I am trying to run a php file in my web server in command line using

php test.php

But it is not working. it runs forever and takes 100% resources.
It was working yesterday and now it is not working.

I tried to debug the process using

strace -p <pid>

and got lots of

times(NULL) = -2058427839

Can anyone help me to debug this? Rebooting and upgrading is my last resort. Please suggest a solution without reboot or upgrade.

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

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

发布评论

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

评论(2

你与昨日 2024-12-14 00:42:28

尝试使用以下命令在没有配置文件的 cli 中运行 php 文件,

php -n <your-filename.php>

然后检查其是否正常工作?

Try to run your php file in cli without the configuration file using the following command:

php -n <your-filename.php>

and then check whether its working?

懷念過去 2024-12-14 00:42:28

将其放入您的 test.php 文件中以检查它是否正常工作并查看可用的内容。

phpinfo();

Place this into your test.php file to check that it is working and to see what is available.

phpinfo();

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