本文整理匯總了PHP中http::sub_data方法的典型用法代碼示例。如果您正苦於以下問題:PHP http::sub_data方法的具體用法?PHP http::sub_data怎麽用?PHP http::sub_data使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類http
的用法示例。
在下文中一共展示了http::sub_data方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: get_album_story_list
public function get_album_story_list($url = '')
{
if (!$url) {
return array();
}
$content = http::get($url);
$intro = http::sub_data($content, '<div id="video_word">', '</div>');
$intro = http::remove_n(trim($intro));
$cover = http::sub_data($content, '<div id="infoImg">', '</div>');
$cover = http::sub_data($cover, 'src="', '"');
preg_match_all('/<audio [\\s|\\S]*?<\\/audio>/', $content, $audio_list);
preg_match_all('/<ul [\\s|\\S]*?<\\/ul>/', $content, $title_list);
preg_match_all('/<li [\\s|\\S]*?<\\/li>/', $title_list[0][0], $title_list);
$audio_list = array_pop($audio_list);
$title_list = array_pop($title_list);
$r = array();
foreach ($title_list as $k => $v) {
$title = http::sub_data($v, '>', '<');
$title = http::remove_n($title);
$source_audio_url = http::sub_data($audio_list[$k], "src='", "'");
if ($title && $source_audio_url) {
$r[$k]['title'] = $title;
$r[$k]['intro'] = $intro;
$r[$k]['cover'] = $cover;
$r[$k]['source_audio_url'] = $source_audio_url;
}
}
return $r;
}