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
355 B
PHP
15 lines
355 B
PHP
#!/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('pdddz-sp');
|
|
$tt->trigger('zc');
|