Home > php教程 > php手册 > cmd 下运行 thinkphp (主要用于定时任务.bat)

cmd 下运行 thinkphp (主要用于定时任务.bat)

WBOY
Release: 2016-06-07 11:36:52
Original
2048 people have browsed it

在windows平台下定时执行thinkphp文件 且不会跳出N个浏览器的方法。其实很简单,只是网上没有,给补一个,让后进者快速使用。
在cmd中:
代码
>php c:\web\ThinkPHP\index.php Home/Index/index
说明
[php执行命令][空格][thinkphp项目入口文件index.php所在的位置][空格][具体方法路径(实际上是参数)]
(注:我这里用的是3.2版本)

然后执行一下就可以看到我们在方法中写的东西了。

做成bat批处理文件:@echo off<br> cd c:\web\ThinkPHP<br> php index.php Home/Index/index<br> ::pause最后一句“::pause”前面的“::”是注释用的。pause 命令 意思是批处理文件执行完毕后不关闭窗口。没有这个命令就会自动关闭窗口。

至于计划任务什么的,请君百度吧。

AD:真正免费,域名+虚机+企业邮箱=0元

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template