本文整理汇总了PHP中Q::gt方法的典型用法代码示例。如果您正苦于以下问题:PHP Q::gt方法的具体用法?PHP Q::gt怎么用?PHP Q::gt使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Q
的用法示例。
在下文中一共展示了Q::gt方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: models_json
public function models_json()
{
usleep(500000);
$object_list = C(ChatMessage)->find_all(Q::gt('id', $this->inVars('since_id', 0)), Q::order('-id'));
echo self::models_to_jsonp(array_reverse($object_list), $this->inVars('callback', 'callback'));
exit;
}
示例2: current
public function current()
{
$this->vars('times', (int) C(BibitterCounter)->find_sum('times', Q::gt('updated', time() - 1800)));
$this->vars('interval', def('update_span', 180) * 1000);
return $this;
}
示例3: declare
<?php
declare (ticks=1);
require dirname(__FILE__) . '/__settings__.php';
import('core.Log');
import('core.Request');
Log::disable_display();
import('Chat.ChatServer');
header('application/x-javascript');
$req = new Request();
$object_list = C(ChatMessage)->find_all(Q::gt('id', $req->inVars('since_id', 0)), Q::order('-id'));
if (count($object_list) > 0) {
echo ChatServer::models_to_jsonp(array_reverse($object_list), $req->inVars('callback', 'callback'));
exit;
}
$server = new ChatServer();
pcntl_signal(SIGTERM, array(&$server, 'models_json'));
pcntl_signal(SIGHUP, array(&$server, 'models_json'));
pcntl_signal(SIGUSR1, array(&$server, 'models_json'));
sleep(def('chat@timeout'));
示例4: get_current
private function get_current()
{
return (int) C(BibitterCounter)->find_sum('times', Q::gt('updated', time() - 1800));
}