本文整理汇总了PHP中CAgent::ExecuteAgents方法的典型用法代码示例。如果您正苦于以下问题:PHP CAgent::ExecuteAgents方法的具体用法?PHP CAgent::ExecuteAgents怎么用?PHP CAgent::ExecuteAgents使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CAgent
的用法示例。
在下文中一共展示了CAgent::ExecuteAgents方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: CheckAgents
function CheckAgents()
{
global $CACHE_MANAGER;
//For a while agents will execute only on primary cluster group
if (defined("NO_AGENT_CHECK") && NO_AGENT_CHECK === true || defined("BX_CLUSTER_GROUP") && BX_CLUSTER_GROUP !== 1) {
return;
}
$agents_use_crontab = COption::GetOptionString("main", "agents_use_crontab", "N");
$str_crontab = "";
if ($agents_use_crontab == "Y" || defined("BX_CRONTAB_SUPPORT") && BX_CRONTAB_SUPPORT === true) {
if (defined("BX_CRONTAB") && BX_CRONTAB === true) {
$str_crontab = " AND IS_PERIOD='N' ";
} else {
$str_crontab = " AND IS_PERIOD='Y' ";
}
}
$saved_time = 0;
if (CACHED_b_agent !== false && $CACHE_MANAGER->Read(CACHED_b_agent, $cache_id = "agents" . $str_crontab, "agents")) {
$saved_time = $CACHE_MANAGER->Get($cache_id);
if (time() < $saved_time) {
return "";
}
}
return CAgent::ExecuteAgents($str_crontab);
}