Jump to content

you tube image


diasansley

Recommended Posts

function getYTid($ytURL) {

 

$ytvIDlen = 11; // This is the length of YouTube's video IDs

 

// The ID string starts after "v=", which is usually right after

// "youtube.com/watch?" in the URL

$idStarts = strpos($ytURL, "?v=");

 

// In case the "v=" is NOT right after the "?" (not likely, but I like to keep my

// bases covered), it will be after an "&":

if($idStarts === FALSE)

$idStarts = strpos($ytURL, "&v=");

// If still FALSE, URL doesn't have a vid ID

if($idStarts === FALSE)

die("YouTube video ID not found. Please double-check your URL.");

 

// Offset the start location to match the beginning of the ID string

$idStarts +=3;

 

// Get the ID string and return it

$ytvID = substr($ytURL, $idStarts, $ytvIDlen);

 

return $ytvID;

 

}

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.