本文整理汇总了PHP中Annotation::from_db方法的典型用法代码示例。如果您正苦于以下问题:PHP Annotation::from_db方法的具体用法?PHP Annotation::from_db怎么用?PHP Annotation::from_db使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Annotation
的用法示例。
在下文中一共展示了Annotation::from_db方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: get_text
static function get_text($key)
{
$annotation = Annotation::from_db($key);
if ($annotation) {
return $annotation->text;
}
return '';
}
示例2: time_annotation
function time_annotation($key)
{
$key .= "-{$this->id}";
$log = Annotation::from_db($key);
if ($log) {
return $log->time;
} else {
return 0;
}
}
示例3: print_external_anaylsis
function print_external_anaylsis($link)
{
$data = Annotation::from_db("analysis_{$link->id}");
if ($data) {
$objects = json_decode($data->text);
Haanga::Load('link_external_analysis.html', compact('objects'));
}
}
示例4: header
header('Content-Type: application/json; charset=utf-8');
$service = clean_input_string($_GET['s']);
switch ($service) {
case 'tweet':
$id = $_GET['id'];
if (!ctype_digit($id)) {
syslog(LOG_INFO, "Missing id {$id}");
exit;
}
$url = "https://api.twitter.com/1/statuses/oembed.json?id={$id}&align=center&maxwidth=550";
break;
default:
die;
}
$key = "json_cache_{$service}-{$id}";
$cache = Annotation::from_db($key);
if ($cache) {
echo $cache->text;
exit(0);
}
// Get the url if not cached
$cache = new Annotation($key);
$res = get_url($url);
if (!$res || !$res['content'] || $res['http_code'] != 200) {
$cache->time = time() + 3600;
// if it failed, cache for one hour
$cache->text = '{}';
// Return empty object
} else {
$cache->time = time() + 86400 * 7;
// 7 days in cache