第一步:首先创建两个文件
第一个bat文件主要是用于来进行执行
第二个文件用于来编写需要的逻辑
第一个文件内容:
D:\phpStudy\PHPTutorial\php\php-5.6.27-nts\php.exe -q E:\shipin\crontab\jztupiancheck\jztupiancheck.php
根据个人需求 修改路径即可
第二个我才用了 curl 的方式来进行访问thinkPHP5 的某个方法, 此处我配置了 本地域名
<?php
$url = 'http://www.shipin_local.com/index/jztupian/datalist';
$timeout = 300;
$data = array();
$header = array();
$ch = curl_init();
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // 跳过证书检查
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, true); // 从证书中检查SSL加密算法是否存在
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
$response = curl_exec($ch);
if($error=curl_error($ch)){
die($error);
}
curl_close($ch);
echo $response;
?>
第二步,创建创建定时器任务,直接上图
1、
2、
3、
4、