4

YouTubeのURL入力から埋め込みコードを取得しようとしています。私はこの答えに出くわしましたが、今ではその答えを自分のコードに適用したので、結果が得られません。私の目標は、正規表現でURLを次のようにすることです:http ://www.youtube.com/watch?v=videoid 。正規表現関数を実際にコードで機能させるにはどうすればよいですか?

<html>
    <form method="post" action="">
    URL:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    <input type="text" value="<?php $text ?>" name="yurl"> <!--$vari-->
    <br>
    <!--<br>
    Height:&nbsp;
    <input type="text" value="<?php $hth ?>" name="yheight"> $hth
    <br>-->
    <!--<br>
    Width:&nbsp;&nbsp;
    <input type="text" value="<?php $wdth ?>" name="ywidth"> $wdth
    <br>
    <br>-->
    Autoplay:&nbsp;
    <input type="checkbox" value="<?php $auto1; $auto2; ?>" name="yautop">  <!--$auto1 $auto2-->
    <br>
    <input type="submit" value="Generate Embed Code" name="ysubmit">
    <br>
    </form>
</html>

PHP

<?php


$vari ='';

if($_POST)
{



    function linkifyYouTubeURLs($vari) {
        $vari = preg_replace('~
            # Match non-linked youtube URL in the wild. (Rev:20111012)
            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>',
            $vari);
        return $vari;
    }



    $vari       = $_POST['yurl'];
    $hth        = 300; //$_POST['yheight'];
    $wdth       = 500; //$_POST['ywidth'];
    $is_auto    =   0;

    $step1 =explode ('v=', $vari);
    $step2 =explode ('&amp;',$step1[1]);

    if(isset($_POST['yautop'] ))
    {
        if($_POST['yautop'] == 1)
            $is_auto    =   1;
    }
    $auto1  = '?autoplay='.$is_auto;
    $auto2  = '&autoplay='.$is_auto;
?>

<p>Iframe Result:</p>   
<?
//Iframe code with optional autoplay

echo  ('<iframe src="http://www.youtube.com/embed/'.$step2[0].'" frameborder="0" width="'.$wdth.'" height="'.$hth.'"></iframe>');
?>
4

2 に答える 2

2

たぶん私はここで何かが欠けていますが、それははるかに使いやすくはないでしょparse_urlparse_str

$url = 'http://www.youtube.com/watch?v=Imh0vEnOMXU&feature=g-vrec';    // some youtube url
$parsed_url = parse_url($url);
/*
 * Do some checks on components if necessary
 */
parse_str($parsed_url['query'], $parsed_query_string);
$v = $parsed_query_string['v'];

コードパッドの例を参照してください。

もちろん、YouTubeが提供する完全なコードスニペットを入力した場合、URLにアクセスするにはDOMパーサーが必要になります。

于 2012-07-11T16:55:18.910 に答える
0

HTMLで変数を出力するために「echo」を使用するのを忘れたようです。インラインPHPを次のように変更した場合は機能しますか?

<?php echo $text ?>

と:

<?php echo $auto1 . $auto2; ?>

この最後の1つは、2つの文字列を一緒にカットするように変更しました。同じことをしようとしているように見えるので、1つだけが必要な場合もありますが、両方を順番に印刷したい場合は、変更したものが機能するはずです。そのために。

それは役に立ちますか?

于 2012-07-11T16:45:04.400 に答える