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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T01:30:02+00:00 2026-05-28T01:30:02+00:00

I have this html: <h2><a href=http://…. > title</h2> How can I get the string

  • 0

I have this html:
<h2><a href="http://.... > title</h2>
How can I get the string “href”?

I tried with:

include('simple_html_dom.php');
$html = file_get_html('http://...');

foreach($html->find('h2')->find('a') as $k) {
echo $k->href . '<br>';
}

error: Call to a member function find() on a non-object

  • 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-28T01:30:03+00:00Added an answer on May 28, 2026 at 1:30 am

    I have not used PHP Simple HTML DOM Parser…but I think the error could be because it returns you a string and you are applying the find function on that returned string which is expecting a html object to be passed…

    The previous solution is wrong bcz it just searched for a string while find function searches a tag..

    One possible way is what I have commented..
    remove first ‘h2’ find creteria and apply for all ‘a’ that is

    foreach($html->find('a') as $k) {
    echo $k->href . '<br>';
    }    
    

    Other possible solution is use php inbuild file_get_contents and seach by regular
    expressions…I have done that for you…

    $html = file_get_contents('new.php');
    $reg_exUrl = "/(http|https|ftp|ftps)\:\/\/[a-zA-Z0-9\-\.]+\.[a-zA-Z]{2,3}(\/\S*)?/";
    $uql=array();
    preg_match($reg_exUrl, $html, $url);
    
    print_r($url);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some HTML like this: <h4 class=box_header clearfix> <span> <a rel=dialog href=http://www.google.com/?q=word>Search</a> </span>
I have this content inside a html page : mypage.html <a href=http://site1 target=_blank class=hrefClass
I've got a string like this: I love @kevinrose 's new website <a href=http://kevinrose.com>Link</a>
For example if location.href = 'http://mydomain.com/en/' and I have <a href=my-file.html id=myId>i am just
I have this html which is an output by php. ... ... <tr valign='top'>
I have tried many permutations of this: builder = Nokogiri::HTML::Builder.new do |doc| doc.html {
I have the following regex expression to match html links: <a\s*href=['|](http:\/\/(.*?)\S['|]> it kind of
I have this code in my html: <div id="div1"> <a href="a"> Apple </a> <a
I have this xml. <?xml version=1.0 encoding=utf-8?> <feed xml:lang=el-gr xmlns=http://www.w3.org/2005/Atom> <title type=text>name.gr</title> <updated>2011-07-23</updated> <link
Let's say I have this in a document: <entry> <link rel=replies type=application/atom+xml href=http://www.url.com/feeds/1/comments/default title=Comments/>

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.