4

次の 2 種類の URL のいずれかを含む PHP 変数があります。

$text = "http://www.youtube.com/v/wUJQPbALd68?version=3&autohide=1&autoplay=1";
$text = " http://www.youtube.com/watch?v=IcrbM1l_BoI 

2つのタイプのURLからIDを抽出するにはどうすればよいですか? 正規表現を使用する必要があると思いますが、私は非常に初心者です。

たとえば、最初$textwUJQPbALd68で、2 番目はIcrbM1l_BoIです。

どうもありがとう。

4

4 に答える 4

1

正規表現を使用して文字列内のすべての Youtube ビデオ ID を検索する方法を参照してください。

// Linkify youtube URLs which are not already links.
function linkifyYouTubeURLs($text) {
    $text = preg_replace('~
        # Match non-linked youtube URL in the wild. (Rev:20130823)
        https?://         # Required scheme. Either http or https.
        (?:[0-9A-Z-]+\.)? # Optional subdomain.
        (?:               # Group host alternatives.
          youtu\.be/      # Either youtu.be,
        | youtube\.com    # or youtube.com followed by
          \S*             # Allow anything up to VIDEO_ID,
          [^\w\-\s]       # but char before ID is non-ID char.
        )                 # End host alternatives.
        ([\w\-]{11})      # $1: VIDEO_ID is exactly 11 chars.
        (?=[^\w\-]|$)     # Assert next char is non-ID or EOS.
        (?!               # Assert URL is not pre-linked.
          [?=&+%\w.-]*    # Allow URL (query) remainder.
          (?:             # Group pre-linked alternatives.
            [\'"][^<>]*>  # Either inside a start tag,
          | </a>          # or inside <a> element text contents.
          )               # End recognized pre-linked alts.
        )                 # End negative lookahead assertion.
        [?=&+%\w.-]*        # Consume any URL (query) remainder.
        ~ix', 
        '<a href="http://www.youtube.com/watch?v=$1">YouTube link: $1</a>',
        $text);
    return $text;
}
于 2013-10-07T22:54:02.427 に答える
0
$text = "http://www.youtube.com/v/wUJQPbALd68?version=3&autohide=1&autoplay=1"
$text_array = explode("/", $text);

//その場合、$text_array[1] は wUJQPbALd68 に等しい

$text = " http://www.youtube.com/watch?v=IcrbM1l_BoI 
$text_array = explode("=", $text);
$id = end($text_array);

end は配列の最後の要素を取得します

テストされていませんが、動作するはずです

于 2013-10-07T22:55:31.293 に答える