本文整理匯總了PHP中CronTask::executeTimestamp方法的典型用法代碼示例。如果您正苦於以下問題:PHP CronTask::executeTimestamp方法的具體用法?PHP CronTask::executeTimestamp怎麽用?PHP CronTask::executeTimestamp使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類CronTask
的用法示例。
在下文中一共展示了CronTask::executeTimestamp方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: dirname
$cronTask->save();
}
}
echo 'all out string:' . $outStr;
}
register_shutdown_function('__shutdown');
if (isset($config)) {
$app = Yii::createApplication('ConsoleApplication', $config);
$app->commandRunner->addCommands(YII_PATH . '/cli/commands');
$env = @getenv('YII_CONSOLE_COMMANDS');
if (!empty($env)) {
$app->commandRunner->addCommands($env);
}
} else {
$app = Yii::createConsoleApplication(array('basePath' => dirname(__FILE__) . '/cli'));
}
require_once 'common/components/shortcuts.php';
CronTask::$uniqKey = $uniqKey;
CronTask::$executeTimestamp = $executeTimestamp;
//die();
$app->run();
/* Below - the old version of this file*/
/*
defined('YII_DEBUG') or define('YII_DEBUG',true);
$root=dirname(__FILE__);
$config=$root.'/config/main.php';
require_once($root.'/../common/lib/global.php');
require_once($root.'/../common/lib/yii-1.1.8/yiic.php');
*/