Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8600275
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T01:34:49+00:00 2026-06-12T01:34:49+00:00

I am trying to modify Simple RSS Reader to get the Youtube Video ID

  • 0

I am trying to modify Simple RSS Reader to get the Youtube Video ID of an item within the RSS to determine the thumbnail, I am seemingly on the right track but not so great with PHP – This is from helper.php and once complete could be used by many others to modify their own Simple RSS Reader Mod for Joomla….

I am wondering how to make this function “getYTid” to place the Id inside the URL Veriable at the end – the code is off in two places, @ the function, and declaring the variable at the end not only how do I do it, but if possible please direct me to a place where I can better understand the syntax of declaring variables with mixed text as well if possible I seem to run into this problem a lot

function getYTid('$feed->itemLink') {

    $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;

}
                $feedItem->feedImageSrc = 'http://i3.ytimg.com/vi/'$ytvID'/default.jpg';
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T01:34:51+00:00Added an answer on June 12, 2026 at 1:34 am

    Here is an working example you can easily adjust it to work for you:

    function get_yt_id($yturl, $idlen) {
    
        $idchk_que = strpos($yturl, "?v=");
        $idchk_amp = strpos($yturl, "&v=");
    
        if ($idchk_que > -1 || $idchk_amp > -1) {
    
            if ($idchk_que > -1) {
    
                $yturl_exploded = explode("?v=", $yturl);
    
            }
            else if ($idchk_amp > -1) {
    
                $yturl_exploded = explode("&v=", $yturl);
    
            }
            $yturl_exp = $yturl_exploded[1];
            $ytid = substr($yturl_exp, 0, $idlen);
    
            return $ytid;
    
        }
        else {
    
            return "ID NOT FOUND";
    
        }
    
    }
    
    $id_from_yturl = get_yt_id("http://www.youtube.com/watch?v=YvbQ9G0yXeU&t=14m36s", "11");
    
    print $id_from_yturl;
    
    • I did a little edit so that this function is more bullet proof…
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to modify a batch script that installs a simple script file
I'm trying to modify my simple Twisted web proxy to use Proxy-Authentication (username/password) instead
I'm trying to modify this code to also give this div item an ID,
I'm trying to fetch some simple text over HTTP from JavaScript: $(function() { $.get(http://mydomain.com/path,
I'm trying to modify a simple dynamic vector in CUDA using the thrust library
In android, I'm trying to create an simple activity allowing me to modify a
I'm trying to write a simple property grid to allow the users to modify
what I am trying to do is to modify simple linked list so far
Im trying to get the contents of an iframe (converted to a simple rich
I'm trying to modify the Simple jQuery Slideshow published by Jonathan Raasch. It cycles

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.