PHP code example of cshaptx4869 / http-crontab
1. Go to this page and download the library: Download cshaptx4869/http-crontab library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
cshaptx4869 / http-crontab example snippets
airy\HttpCrontab;
date_default_timezone_set('PRC');
//数据库配置
//启动脚本后会自行创建所需的数据表
//定时器任务执行日志按月自动分表
$dbConfig = [
'hostname' => '127.0.0.1',
'hostport' => '3306',
'username' => 'root',
'password' => 'root',
'database' => 'test',
'charset' => 'utf8mb4'
];
//启动后默认监听 http://127.0.0.1:2345
//可在new的时候传递第一个参数改变监听地址
(new HttpCrontab())->setDebug(true)
->setName('System Crontab')
->setDbConfig($dbConfig)
->run();