このプロジェクトでは一時的な書き込みを使用します。改善予定
/*
*ユーザーが提出した(swf/html)アドレスに従って、YoukuとTudouのswf再生アドレスを取得します
* */
プライベート関数 _getSwf ($url = '') {
If(isset($url) && !empty($url)){
Preg_match_all('/http://(.*?)?.(.*?)?.com/(.*)/',$url,$types);
}その他{
false を返す;
}
$type = $types[2][0];
$domain = $types[1][0];
$isswf = strpos($types[3][0], 'v.swf') === false false : true;
$method = substr($types[3][0],0,1);
スイッチ ($type){
ケース「ようく」:
if( $domain == 'プレイヤー' ) {
$swf = $url;
}else if( $domain == 'v' ) {
preg_match_all('/http://v.youku.com/v_show/id_(.*)?.html/',$url,$url_array);
$swf = 'http://player.youku.com/player.php/sid/'.str_replace('/','',$url_array[1][0]).'/v.swf';
}その他{
$swf = $url;
}
休憩;
ケース「tudou」:
if($isswf){
$swf = $url;
}その他{
$method = $method == 'p' ? 'v' : $メソッド ;
preg_match_all('/http://www.tudou.com/(.*)?/(.*)?/',$url,$url_array);
$str_arr =explode('/',$url_array[1][0]);
$count = count($str_arr);
if($count == 1) {
$id =explode('.',$url_array[2][0])[0];
}else if($count == 2){
$id = $str_arr[1];
}else if($count == 3){
$id = $str_arr[2];
}
$swf = 'http://www.tudou.com/'.$method.'/'.$id.'/v.swf';
}
休憩;
デフォルト:
$swf = $url;
休憩;
}
$swf を返します;
}
|