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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T07:04:49+00:00 2026-05-27T07:04:49+00:00

I am trying to pull text from a single element in an xml file,

  • 0

I am trying to pull text from a single element in an xml file, i was able to pull the entire file but i really only need a couple of lines from the file…

On this page i was able to pull the entire xml file ( http://smyrnainlet.com/testing.php )

But when i try to just single out one line from that file.
http://smyrnainlet.com/current_data.php

This is the error i am receiving:

Fatal error: Call to a member function getbyElementID() on a non-object in /home/content/74/8620474/html/current_data.php on line 9

If anyone could help me that would be amazing, i have been struggling with this for hours.

This is my code:

<?php

function startElemHandler($parser, $name, $attribs) 
{
    if (strcasecmp($name, "current_observation") ==0 ) {
        echo "<div id='waves'>\n";
    }
    if (strcasecmp($name, "wave_height_ft") ==0) {
            $waveHeight->getbyElementID("wave_height_ft");

            echo $waveHeight->asXML();
    }

}

function endElemHandler($parser, $name)
{ 
    if (strcasecmp($name, "current_observation") ==0 ) {
        echo "</div>";
    }

}

$parser = xml_parser_create();
xml_set_element_handler($parser, startElemHandler, endElemHandler);
xml_parser_set_option($parser, XML_OPTION_CASE_FOLDING, 0);

$strXML = implode("",file("http://www.weather.gov/xml/current_obs/41009.xml"));

xml_parse($parser, $strXML);

xml_parser_free($parser);


?>
  • 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-27T07:04:50+00:00Added an answer on May 27, 2026 at 7:04 am

    You have a few fundamental flaws with your code but you are essentially asking how to parse an XML file. I suggest using PHP’s DOMDocument with DOMXPath to extract the data you need. Here is some example code:

    $xml = file_get_contents('weather.xml');
    $dom = new DOMDocument();
    @$dom->loadHTML($xml);
    $domx = new DOMXPath($dom);
    $entries = $domx->evaluate("//wave_height_ft");
    $arr = array();
    foreach ($entries as $entry) {
        $arr[] = '<' . $entry->tagName . '>' . $entry->nodeValue .  '</' . $entry->tagName . '>';
    }
    print_r($arr);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Trying to pull the text from a label on the page but it's not
I am trying to pull text from various parts of a webpage and push
I am trying to pull the anchor text from a link that is formatted
I'm trying to pull some data from plist file and display it in a
I am trying to pull text from another page (ajaxuseradd.psp) which is in JSON
I am playing around with steganography. I am trying to pull a text file
I am trying to pull a value from my Web.Debug.Config file most specifically from
I'm trying to pull a couple variables from the following block of html. If
So I'm trying to pull some data from two text files. The first loads
I am trying to pull out the alt text from all images on a

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.