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 612315
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T17:52:47+00:00 2026-05-13T17:52:47+00:00

How can i get the blogid from a given blogspot.com url? I looked at

  • 0

How can i get the blogid from a given blogspot.com url?
I looked at the source code of the webpage from a blogspot.com it looks like this

<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://www.blogger.com/rsd.g?blogID=4899870735344410268" />

how can i parse this to get the number 4899870735344410268

  • 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-05-13T17:52:48+00:00Added an answer on May 13, 2026 at 5:52 pm

    Use DOMDocument to parse the document and then use its methods to retrieve the wanted element.

    I cannot stress this enough: never use regular expressions to parse an HTML document.

    function getBlogId($url) {
      $ch = curl_init($url);
      curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
      curl_setopt($ch, CURLOPT_AUTOREFERER, 1);
      curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
      curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
      $page = curl_exec ($ch);
      curl_close($ch);
    
      $doc = new DOMDocument();
      @$doc->loadHTML($page);
    
      $links = $doc->getElementsByTagName('link');
    
      foreach($links as $link) {
        $rel = $link->attributes->getNamedItem('rel');
    
        if($rel && $rel->nodeValue == 'EditURI') {
          $href = $link->attributes->getNamedItem('href')->nodeValue;
          $query = parse_url($href, PHP_URL_QUERY);
    
          if($query) {
            $queryComp = array();
            parse_str($query, $queryComp);
    
            if($queryComp['blogID']) {
              return $queryComp['blogID'];
            }
          }
        }
      }
    
      return false;
    }
    

    Example use:

    $id = getBlogId('http://thehouseinmarrakesh.blogspot.com/');
    echo $id; // 483911541311389592
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can we get an ivar or a property from a NSString like we can
Can I get a MAC address that are connected to my site. this code
I can get current date of iphone via this code as NSDate *currentDate =
I can get the element like this $(#txtEmail) but I'm not sure how to
You can get the fully qualified class name of a Python object like this
I can get this code to run in the interactive environment but it crashes
I can get this to work: [<DllImport(user32.dll)>] extern bool GetClientRect(nativeint, RECT*) let getClientRect hwnd
I can get the current selected row in this way: private void DataGridView1_CellContentClick(object sender,
This example is from the Django documentation . Given the (Django) database model: class
Let's say I have a model that looks like this: public class Blog {

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.