window2008服务器定时任务

1.创建 .bat  后缀文件

D:\SOFT_PHP_PACKAGE\php5.5\php.exe -c D:\SOFT_PHP_PACKAGE\php5.5\php.ini -q D:\wwwroot\chosetel\fukuan\ds.php

2.ds.php

<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2014 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <[email protected]>
// +----------------------------------------------------------------------

// 应用入口文件

// 检测PHP环境
if(version_compare(PHP_VERSION,'5.3.0','<'))  die('require PHP > 5.3.0 !');

// 开启调试模式 建议开发阶段开启 部署阶段注释或者设为false
define('APP_DEBUG',True);

//指定模块控制器和方法 
$_GET['m']='Home'; 
$_GET['c']='Bill'; 
$_GET['a']='dsrw'; 

// 定义应用目录
define('APP_PATH','./Application/');

// 引入ThinkPHP入口文件
require './ThinkPHP/ThinkPHP.php';

扫描二维码关注公众号,回复: 8708734 查看本文章

// 亲^_^ 后面不需要任何代码了 就是如此简单
 

3.服务器设置定时任务

注意设置定时路径起始路径要设置,如D:\wwwroot\chosetel\fukuan\ds.php的起始路径为D:\wwwroot\chosetel\fukuan\

发布了34 篇原创文章 · 获赞 10 · 访问量 3万+

猜你喜欢

转载自blog.csdn.net/u014391889/article/details/86578873