472,330 Members | 1,429 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,330 software developers and data experts.

Issues with simplexml_load_file

33
Hi,

I am having issues using simplexml. I have generated an XML file using PHP (link), and I am trying to load it into a simplexml object using:

Expand|Select|Wrap|Line Numbers
  1. $xml = simplexml_load_file("news_headlines_xml.php");
This is generating a parser error:
Warning: simplexml_load_file() [function.simplexml-load-file]: news_headlines_xml.php:72: parser error : Start tag expected, '<' not found in /home/airfront/public_html/FedEx4/functions.php on line 5

Warning: simplexml_load_file() [function.simplexml-load-file]: $xmlString = '<?xml version="1.0" encoding="utf-8"?>'; in /home/airfront/public_html/FedEx4/functions.php on line 5
It looks as if it's trying to parse the actual PHP script, and not the generated XML. I have set the MIME type on the PHP file to text/xml. Here is the script that generates the XML:

Expand|Select|Wrap|Line Numbers
  1. // Begin XML
  2. $xmlString =  '<?xml version="1.0" encoding="utf-8"?>';
  3. $xmlString .= "<NEWS>";
  4.  
  5. // Begin data output
  6. if($getPostCount<count($posts)){
  7.     for($b=0;$b<$getPostCount;$b++){
  8.         $xmlString .= "<ARTICLE>";
  9.         $xmlString .= "<AUTHOR>" . $postArray[$posts[$b]]['poster_name'] . "</AUTHOR>";
  10.         $xmlString .= "<SUBJECT>" . str_replace("\"", "&quot;", $postArray[$posts[$b]]['post_subject']) . "</SUBJECT>";
  11.         $xmlString .= "<TIME>" . $postArray[$posts[$b]]['post_time'] . "</TIME>";
  12.         $xmlString .= "</ARTICLE>";
  13.     }
  14. }
  15. $xmlString .= "</NEWS>";
  16.  
  17. echo $xmlString;
  18.  
I am pretty new to XML, is this even possible? If not, what other methods are available to me?
May 31 '09 #1
7 10748
Atli
5,058 Expert 4TB
Hi.

That should work fine, yea.

However, the link you gave us isn't outputting anything.
Therefore your simplexml_load_file call fails, having nothing to parse.

Are you sure the script that generates the XML is working correctly?
Did you perhaps forget to upload it, or uploaded a old version of it?
May 31 '09 #2
flydev
33
Doh, I apologize, I was using a work-around, which broke that file...it's back to the way it was, and it looks like a valid XML file =(
May 31 '09 #3
Atli
5,058 Expert 4TB
Ok. Did that fix the simplexml issue to?

I tried this a simple test on my own server, and it worked fine.
Expand|Select|Wrap|Line Numbers
  1. <?php
  2. header("content-type: text/plain");
  3.  
  4. $ex = simplexml_load_file("http://www.airfrontierva.com/FedEx4/news_headlines_xml.php");
  5.  
  6. foreach($ex->ARTICLE as $_article) {
  7.     echo "Article: \n";
  8.     echo " - Author:\t", $_article->AUTHOR, "\n";
  9.     echo " - Subject:\t", $_article->SUBJECT, "\n";
  10.     echo " - Time:\t", $_article->TIME, "\n";
  11. }
  12. ?>
And I got these results:
Expand|Select|Wrap|Line Numbers
  1. Article: 
  2.  - Author:    Anonymous
  3.  - Subject:    Filing Flight Reports
  4.  - Time:    1213043343
  5. Article: 
  6.  - Author:    FDX250 Fred
  7.  - Subject:    Website Address in Remarks Section of Flightplan
  8.  - Time:    1220920102
  9. Article: 
  10.  - Author:    FDX1032 Jesse
  11.  - Subject:    Pilot Operating Handbook Update
  12.  - Time:    1222778802
  13. Article: 
  14.  - Author:    FDX631 - Renato
  15.  - Subject:    NOTAM - South America - SID CHANGE of HUB Campinas
  16.  - Time:    1224599515
  17. Article: 
  18.  - Author:    FDX631 - Renato
  19.  - Subject:    HUB Campinas (SBKP) VOR PSN/PIR
  20.  - Time:    1227142677
May 31 '09 #4
flydev
33
Interesting....I copied your script to test.php, it errors out the same. I did have to change the path to the file because my server does not allow URL access. Perhaps this is a server issue, or if it's not give in URL format it interprets the file differently? (link)

Warning: simplexml_load_file() [function.simplexml-load-file]: news_headlines_xml.php:73: parser error : Start tag expected, '<' not found in /home/airfront/public_html/FedEx4/test.php on line 4

Warning: simplexml_load_file() [function.simplexml-load-file]: $xmlString = '<?xml version="1.0" encoding="utf-8"?>'; in /home/airfront/public_html/FedEx4/test.php on line 4

Warning: simplexml_load_file() [function.simplexml-load-file]: ^ in /home/airfront/public_html/FedEx4/test.php on line 4

Warning: Invalid argument supplied for foreach() in /home/airfront/public_html/FedEx4/test.php on line 6
May 31 '09 #5
Atli
5,058 Expert 4TB
If you give it a file path, it will read the file as it is... meaning it will read the PHP code.

If you give it a URL, it will request the file via a HTTP server, which will execute the PHP code and return the output.
May 31 '09 #6
flydev
33
I see, i'll petition my provider to enable URL access....thanks so much for your help!
May 31 '09 #7
Atli
5,058 Expert 4TB
No problem.

But there is an easier solution.
You can include your PHP file into your script and get the value like that.

For example:
Expand|Select|Wrap|Line Numbers
  1. <?php
  2. /**
  3.  * File: createXML.php
  4.  */
  5.   $xmlString = "";
  6.   // Insert code to create some XML here
  7.  
  8.   return $xmlString
  9. ?>
Expand|Select|Wrap|Line Numbers
  1. <?php
  2. /**
  3.  * File: index.php
  4.  */
  5. $xmlString = include("createXML.php");
  6.  
  7. $parsed = simplexml_load_string($xmlString);
  8.  
  9. // etc...
  10. ?>
May 31 '09 #8

Sign in to post your reply or Sign up for a free account.

Similar topics

3
by: Rainer Mohr | last post by:
Hi, I´m having some problems with simplexml_load_file() and cant find any sollution anywhere. Say, we have the following file: ---file.xml---...
2
by: malcolm | last post by:
Hello, We have a robust (.NET 1.1 c# winforms) client-server application that utilizes many typed DataSets, typed DataTables and typed DataRows....
3
by: eschneider | last post by:
Just some common issues with WS: Using custom objects: When objects change, seems you are always fixing some issue. Update references, which...
2
by: Harsha | last post by:
Hi All, I am using simplexml_load_file function to parse xml files on my localhost. But the server hosting my domain has php 4.x.x. so i want to...
7
by: alexus | last post by:
i have test.xml file that i pull from someone, and when i try to load it up into php I get this mbp:cj alexus$ php api.php SimpleXMLElement...
1
by: SnakesRule | last post by:
I'm trying to pull data from remote xml files to load the database of a library. My sources are www.amazon.com and www.ISBNdb.com. But when I try to...
4
by: newzdog | last post by:
Hi, I have a problem parsing an rss feed using simplexml_load_file - this is strange as i have used the same code to parse literally 1000s of...
2
cudan706
by: cudan706 | last post by:
When i use Simplexml_load_file. How can i close or end load file process xml when simplexml_load_file. example: <?php $xml =...
5
by: ziycon | last post by:
How can I search the object from simplexml_load_file() to pull out certain nodes? Haven't had any luck searching for help on it?
0
by: tammygombez | last post by:
Hey fellow JavaFX developers, I'm currently working on a project that involves using a ComboBox in JavaFX, and I've run into a bit of an issue....
0
by: tammygombez | last post by:
Hey everyone! I've been researching gaming laptops lately, and I must say, they can get pretty expensive. However, I've come across some great...
0
by: concettolabs | last post by:
In today's business world, businesses are increasingly turning to PowerApps to develop custom business applications. PowerApps is a powerful tool...
0
better678
by: better678 | last post by:
Question: Discuss your understanding of the Java platform. Is the statement "Java is interpreted" correct? Answer: Java is an object-oriented...
0
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
0
by: CD Tom | last post by:
This happens in runtime 2013 and 2016. When a report is run and then closed a toolbar shows up and the only way to get it to go away is to right...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
2
by: Matthew3360 | last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.