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

  • Home
  • SEARCH
  • 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 6050759
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T07:43:28+00:00 2026-05-23T07:43:28+00:00

I want to fetch any meta, title, script, link tag that is available on

  • 0

I want to fetch any meta, title, script, link tag that is available on HTML page, this is the program i write (not correct but will give idea for experts).

<?php
function get_tag($tag_name, $url)
{
    $content = file_get_contents($url);

    // this is not correct : regular expression please //
    preg_match_all($tag_name, $content, $matches);

    return $matches;
}

print_r(get_tag('title', 'http://stackoverflow.com'));

?>

Output should come something like this :

Array
(
    [0] => title
    [1] => Stack Overflow
)

Thanks!!

  • 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-23T07:43:29+00:00Added an answer on May 23, 2026 at 7:43 am
    function get_tags($tag, $url) {
    //allow for improperly formatted html
    libxml_use_internal_errors(true);
    // Instantiate DOMDocument Class to parse html DOM
    $xml = new DOMDocument();
    
    // Load the file into the DOMDocument object
    $xml->loadHTMLFile($url);
    
    // Empty array to hold all links to return
    $tags = array();
    
    //Loop through all tags of the given type and store details in the array
    foreach($xml->getElementsByTagName($tag) as $tag_found) {
          if ($tag_found->tagName == "meta")
          {
            $tags[] = array("meta_name" => $tag_found->getAttribute("name"), "meta_value" => $tag_found->getAttribute("content"));
          }
          else {
        $tags[] = array('tag' => $tag_found->tagName, 'text' => $tag_found->nodeValue);
         }
    }
    
    //Return the links
    return $tags;
    }
    

    This answer will actually give you the name of the tag as your first array value rather than “array” and will also stop the warning.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have got a PHP/HTML page where I want to fetch data from but
I want to fetch a web page from a ASP.NET site that is only
I want to fetch a web page from a ASP.NET site that is only
i only want to know that whether data is available for any specific date
I want to fetch google images against any query. I have gone through the
want to fetch the value from dynamically created textfield with tag from NSMutableArray.... Txt_New_Estimated
I want to fetch the title from book table and the subject name from
i Want to fetch this data using json decode. Please Help.. So far i
I want to fetch the title of a webpage which I open using urllib2.
I have a desktop forms application . I want to fetch any flash file

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.