本文整理匯總了PHP中Video::video_get_info方法的典型用法代碼示例。如果您正苦於以下問題:PHP Video::video_get_info方法的具體用法?PHP Video::video_get_info怎麽用?PHP Video::video_get_info使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Video
的用法示例。
在下文中一共展示了Video::video_get_info方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: content
public static function content($full = false)
{
global $post;
global $theme;
if ($post['type'] == 'quote') {
$html = '<blockquote>' . $post['quote'] . '</blockquote>';
} elseif ($post['type'] == 'video') {
$video_width = !isset($theme['video_width']) ? 640 : $theme['video_width'];
$video_height = !isset($theme['video_height']) ? 320 : $theme['video_height'];
$video_info = Video::video_get_info($post['video'], $video_width, $video_height);
$html = '<div class="video-embed">';
$html .= $video_info['embed'];
$html .= '</div>';
} else {
if ($full) {
$html = $post['content'][0];
} else {
$html = $post['content'][1];
}
}
return $html;
}
示例2: header
<?php
header("Content-Type: text/xml");
require '../boot/ajax.bit';
require 'security.bit';
$error = Video::video_get_info($_POST['url']);
if ($error == false) {
exit(Text::ajax_header('<error><![CDATA[1]]></error>'));
} else {
exit(Text::ajax_header('<success><![CDATA[1]]></success><title><![CDATA[' . $error['title'] . ']]></title>'));
}