-1
請給關鍵字對谷歌搜索..教程請告訴我代碼(//-\.*)
在PHP文件第一行
public function get_supported_url_patterns()
{
return array('/https?:\\/\\/(www\\.)?example\\.com\\/movies\\/[0-9]+\\/[^\\.]+\\.html.*/i');
}
第二碼
的名字protected function get_content_page_url_finder_pattern()
{
return '|<a[^>]*href\\ *?=[\\ \'"]*?(https?:\\/\\/(www\\.)?example\\.com\\/movies\\/[0-9]+\\/[^\\.]+\\.html)[\\ \'">]?|i';
}
1例如:
protected function get_pagination_url_finder_selectors()
{
return array('.pager a');
}
2 EXA mple:
if (preg_match('/240p[\'"]\\ *:\\ *[\'"]([^\'"]*cdn[^\'"]*\\.com[^\'"]*)[\'"]/i', $page_code, $temp)) {
}
}
else {
}
str_replace('/', trim('\\/', '/', trim($temp[1])));
if (preg_match('/480p[\'"]\\ *:\\ *[\'"]([^\'"]*cdn[^\'"]*\\.com[^\'"]*)[\'"]/i', $page_code, $temp)) {
$result->add_video_file('480p', str_replace('\\/', '/', trim($temp[1])));
if (preg_match('/720p[\'"]\\ *:\\ *[\'"]([^\'"]*cdn[^\'"]*\\.com[^\'"]*)[\'"]/i', $page_code, $temp)) {
}
}
感謝您的幫助
正則表達式或模式 –
謝謝... Robby Cornelissen – maks