You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
353 B
PHTML
15 lines
353 B
PHTML
11 months ago
|
#!/alidata/server/php/bin/php
|
||
|
<?php
|
||
|
require_once __DIR__ . '/class.TimerTrigger.php';
|
||
|
|
||
|
@ini_set('display_errors', '1');
|
||
|
error_reporting(E_ALL & ~E_NOTICE & ~E_WARNING);
|
||
|
|
||
|
$rootDir = dirname(dirname(__FILE__));
|
||
|
include $rootDir . '/zc-framework/zc.php';
|
||
|
|
||
|
date_default_timezone_set('Asia/Shanghai');
|
||
|
|
||
|
$tt = new TimerTrigger('pdd-sp');
|
||
|
$tt->trigger('zc');
|