安排在 IIS 中运行的 PHP 任务

发布于 2024-10-20 17:17:01 字数 117 浏览 5 评论 0原文

有谁有一个简单的解决方案来调度在 IIS 中运行的 PHP 任务?

我有一个 php 脚本,可以将我们的数据库和电子邮件备份到单独服务器上的备份地址。

我拥有服务器的管理员访问权限。谢谢!

Does anyone have a simple solution for scheduling PHP tasks running in IIS?

I have a php script which backs up our databases and emails to our backup address on a separate server.

I have admin access to the server. Thanks!

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

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

发布评论

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

评论(1

鸠书 2024-10-27 17:17:01

假设您可以从命令行运行 PHP,只需使用 Windows 任务计划程序设置这些作业,它们可以从控制面板/计划任务进行配置。

典型的任务可能类似于:

C:\PHP\php.exe -f BOINCStats.php

将“开始于”目录设置为

C:\PHP

您可以在 手册

编辑

如果您创建 .bat 文件,您可能希望确保它引用特定的 php.ini,

例如

C:\xampp\php\php -c \xampp\php\php5CLI.ini %1 %2 %3 %4 %5 %6 %7 %8 %9

Assuming that you can run PHP from the command line, just set these jobs using the Windows Task Scheduler, they can be configured from Control Panel/Scheduled Tasks.

A typical task might look something like:

C:\PHP\php.exe -f BOINCStats.php

with the "Start in" directory set as

C:\PHP

You can find full details for running PHP from the command line in the manual

EDIT

If you create a .bat file, you might like to ensure that it references a specific php.ini

e.g.

C:\xampp\php\php -c \xampp\php\php5CLI.ini %1 %2 %3 %4 %5 %6 %7 %8 %9
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文