当前位置: 首页>>代码示例>>PHP>>正文


PHP Annotation::from_db方法代码示例

本文整理汇总了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 '';
 }
开发者ID:GallardoAlba,项目名称:Meneame,代码行数:8,代码来源:annotation.php

示例2: time_annotation

 function time_annotation($key)
 {
     $key .= "-{$this->id}";
     $log = Annotation::from_db($key);
     if ($log) {
         return $log->time;
     } else {
         return 0;
     }
 }
开发者ID:brainsqueezer,项目名称:fffff,代码行数:10,代码来源:link.php

示例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'));
    }
}
开发者ID:manelio,项目名称:woolr,代码行数:8,代码来源:story.php

示例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
开发者ID:GallardoAlba,项目名称:Meneame,代码行数:31,代码来源:json_cache.php


注:本文中的Annotation::from_db方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。