本文整理汇总了PHP中CronTask::uniqKey方法的典型用法代码示例。如果您正苦于以下问题:PHP CronTask::uniqKey方法的具体用法?PHP CronTask::uniqKey怎么用?PHP CronTask::uniqKey使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CronTask
的用法示例。
在下文中一共展示了CronTask::uniqKey方法的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');
*/