从不同机器上的 bash 调用 PHP 脚本

发布于 2024-11-15 23:48:26 字数 121 浏览 0 评论 0原文

我需要从 machine2 上的 .sh 脚本调用 machine1 上的 PHP 脚本。我该怎么做?
基本上我需要将一个参数传递给相应的 PHP 脚本并使其使用它运行。

谢谢!

I need to call a PHP script on machine1 from a .sh script on machine2. How can I do this?
Basically I need to pass a parameter to the respective PHP script and make it run using it.

Thanks!

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

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

发布评论

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

评论(2

成熟的代价 2024-11-22 23:48:26

您可以使用 ssh:

ssh user@otherhost /path/to/php-script

如果您想在脚本中执行此操作,则必须启用公钥身份验证。

You can use ssh:

ssh user@otherhost /path/to/php-script

if you want to do this in a script, you have to enable public key authentiction.

海未深 2024-11-22 23:48:26

设置 Apache 并使用 curl,或使用 SSH 作为建议的其他答案。设置 Apache 的安全性乍一看似乎更简单,但事实可能并非如此。

Setup Apache and use curl, or use SSH as the other answer suggested. The security aspects of setting up Apache seems simpler at first, but this may not be true.

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