安排在 IIS 中运行的 PHP 任务
有谁有一个简单的解决方案来调度在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您可以从命令行运行 PHP,只需使用 Windows 任务计划程序设置这些作业,它们可以从控制面板/计划任务进行配置。
典型的任务可能类似于:
将“开始于”目录设置为
您可以在 手册
编辑
如果您创建 .bat 文件,您可能希望确保它引用特定的 php.ini,
例如
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:
with the "Start in" directory set as
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.