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


PHP DataManager::updateViewCount方法代码示例

本文整理汇总了PHP中DataManager::updateViewCount方法的典型用法代码示例。如果您正苦于以下问题:PHP DataManager::updateViewCount方法的具体用法?PHP DataManager::updateViewCount怎么用?PHP DataManager::updateViewCount使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在DataManager的用法示例。


在下文中一共展示了DataManager::updateViewCount方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: ini_set

 * https://developers.google.com/apis-explorer/#p/youtube/v3/
 * https://developers.google.com/youtube/v3/
 * https://console.developers.google.com
 */
ini_set('max_execution_time', 60 * 15);
require_once 'autoload.php';
set_include_path(get_include_path() . PATH_SEPARATOR . 'libs/google-api/src');
require_once 'Google/autoload.php';
$view = new stdClass();
try {
    DB::connect();
    $y = new YoutubeFinder();
    $singers = DataManager::getAllSingers();
    foreach ($singers as $singer) {
        $videos = $y->findVideoByTitle($singer['name']);
        DataManager::addClipsForSinger($singer['id'], $videos);
    }
    unset($singer);
    $viewCount = array();
    $clips = DataManager::getAllClips();
    foreach ($clips as $clip) {
        $viewCount[$clip['id']] = $y->getViewCountForVideo($clip['youtube_id']);
    }
    unset($clip);
    DataManager::updateViewCount($viewCount);
    $view->data = DataManager::getClipsBySinger();
    DB::disconnect();
    include 'index.tpl';
} catch (\Exception $e) {
    exit($e->getMessage());
}
开发者ID:jammerwock,项目名称:test.lc,代码行数:31,代码来源:index.php


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