本文整理汇总了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());
}