A PHP extension shipped with the main source tree. The SimpleXML extension provides a very simple and easily usable toolset to convert XML to an object that can be processed with normal property selectors and array iterators. For java Simple XML framework use [simple-framework] tag.

learn more… | top users | synonyms

0
votes
0answers
36 views

Am I correctly reading and parsing XML file in PHP?

I'm getting data from our email service provider's api. The api only returns data in xml format. I don't know a lot about PHP, so tell me if the approach I'm taking is correct and efficient. I want ...
0
votes
0answers
7 views

SimpleXML remove nodes

I've got a foreach loop that is only running once and it has me stumped. 1: I load an array of status values (either "request", "delete", or "purchased") 2: I then load an xml file and need to loop ...
-1
votes
1answer
16 views

SimpleXML how to catch categories [closed]

How can i catch the categories and "mediumPromo" in this XML sheet? I have already tried, and my code is now like: $content = ...
0
votes
1answer
18 views

using simple xml to read parts of an html page returns warning's / notice of non-object, and need to fix this

Okay so I've been working on this little script which is bascially scrapping a page from ted.com everything works as i want it to (meaning I can print out all values that I am interested in), The ...
-1
votes
1answer
24 views

Getting viewCount from XML

I have everything set up but I'm not sure how to get the viewCount form this file $url = 'http://gdata.youtube.com/feeds/api/users/gudjondaniel/uploads?max-results=1'; $source = ...
0
votes
1answer
35 views

PHP Find Last value in XML

I have the following XML file and I cannot figure out how I would get PHP to open this file and know that the last ID is 3. <League> <Id>1</Id> <Name>English Premier ...
3
votes
0answers
32 views

How to parsing the XML by SimpleXML

I am trying to parse the below XML using SimpleXML parsing. I have tried in different ways to parse the Attributes of the Element but unable to get success in parsing the below XML. It generates an ...
0
votes
0answers
13 views

Using git atom feed on a private repo

I'm trying to make a public page for revisions where people who don't have permission to view the repo can see my page which takes info from the feed to the page. I got this all working by using ...
0
votes
1answer
35 views

Check for empty element

For this XML: <row> <entry XY="1" al="23" se="5" ag="fgh"> </entry> <entry XY="1" al="23" se="5" ag="fgh">Content1</entry> <entry XY="1" al="23" se="5" ...
0
votes
1answer
15 views

PHP SimpleXML parsing XML with namespaces

I have XML like this <atom:feed xmlns="http://kosapi.feld.cvut.cz/schema/3" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:osearch="http://a9.com/-/spec/opensearch/1.1/" ...
0
votes
1answer
18 views

Magento: Alan Storm No Frills Magento Layout: loading XML file from memory reports an error

I am running Magento 1.7.0.2. In my derived controller class I have an action with the following code: public function indexAction() { $layout = Mage::getSingleton('core/layout'); $xml = ...
0
votes
0answers
27 views

Read elements with namespace? [duplicate]

Several simple XML files can be read from SimpleXMLElement object in PHP. I have XML content with consist of namespace and difficult to identify element wise xml content values. This is output of my ...
0
votes
1answer
25 views

converting xml data to php object, having trouble accessing variables [duplicate]

I am using myfxbook's api, the returned format is in xml. I convert the xml data into a php object with <?php $request = file_get_contents($url); $result = ...
0
votes
1answer
11 views

Why SIMPLE XML addChild() adds 3 childs?

I am developing simple class for loging errors to xml file. What I expect is root element log with 3 child elemens error with child element message. But output is Message 1Message 2Message 3 Message ...
2
votes
1answer
31 views

PHP array_walk_recursive() for SimpleXML objects?

I would like to apply a function to every node in a SimpleXML object. <api> <stuff>ABC</stuff> <things> <thing>DEF</thing> ...
2
votes
1answer
35 views

Iterating through and editing a SimpleXML object by reference in PHP

I am writing a function to decrypt the contents of a SimpleXML object in place. function xmlWalkerDecrypt(&$xmlObj, $aesKey) { if ($xmlObj->count()>0){ foreach($xmlObj as ...
1
vote
1answer
31 views

PHP: XML file contains strange @attribute-tags after saving with asXML

I need to modify an xml-file after uploading to a Drupal-Page. I use the rules-module for this, to do some changes to the file and save it in a new location on server. That works fine, but in the ...
-1
votes
0answers
24 views

PHP xmlParseEntityRef: no name

I am getting this error. I know, I know, its ampersand crap, as referenced in 'xmlParseEntityRef: no name' warnings while loading xml into a php file simplexml_load_file problems But ...
0
votes
1answer
25 views

Storing value retrieved using SimpleXML into a PHP variable

I am pulling a value from a xml using PHP's simpleXML. When I echo the value it is fine, however when I store the value in a PHP variable and then do some math with it or even echo it, it does not ...
0
votes
0answers
27 views

Reading from an xml file (Sage Pay Reporting API)

I guess this question is not a Sage Pay specific question, although it's being mentioned in relation to my problem, so hope you're able to help me with this tricky issue. Here's what I want to do: ...
0
votes
1answer
30 views

Parsing HTML with DOM

I am trying to parse HTML for example <html> <head> </head> <body> <a href='example.com'>Hello, <span>World</span></a> <ul> ...
2
votes
0answers
76 views

PHP foreach iterating too often on SimpleXML object [closed]

I'm using simpleXML to parse a xml file and want to iterate through the elements using a foreach loop and store it to a mysql database with help of a Yii model. I have a sample xml file containing ...
-2
votes
1answer
72 views

How to parse this XML? [closed]

Example URL http://catalog.viglink.com/vigcatalog/products.xml?key=MY_KEY&keyword=samsung and the content looks like this : http://pastebin.com/cLQ0guuV I can only get here <?php DEFINE ...
0
votes
1answer
24 views

Simple XML converting Boolean FALSE to SimpleXMLElement

Can someone explain the following behavior in Simple XML $xml = simplexml_load_string( "<score></score>" ); $xml->addChild('test', FALSE); print_r($xml); Produces SimpleXMLElement ...
5
votes
0answers
44 views

XML being parsed differently across machines [closed]

Here is my input xml <app appid="{C38B7539}" lang="en"> <updatecheck/> </app> which gets parsed by following php $xmlObj = simplexml_load_string($xmlStr); if ($xmlObj ...
0
votes
1answer
30 views

Simplexml & php rss feed (view image from rss feed)

I am trying to parse the yahoo pipe rss feed. this is the feed <channel> ....... <item> ...... <media:content ...
1
vote
3answers
61 views

php implode doesn't work as expected

I made some SimpleXMLObject and converted it into an array and implode them but the result is not imploded string but the first element of array alone. funnier thing is it's working as expected in my ...
0
votes
3answers
39 views

How to get ALL elements of simplexml object

OK, I'm totally stumped here. I've found similar questions, but the answers don't seem to work for my specific problem. I've been working on this on and off for days. I have this here simplexml ...
-1
votes
1answer
37 views

Replace “:” by “_” in XML Tagnames [closed]

The XML I'm using can you find here: http://www.politie.nl/rss/ab/gemeenten/zuid-holland/rotterdam.xml. The problem is that there are a lot of tags with a :. We want to replace the : with _. Tags ...
0
votes
1answer
22 views

Get XML in PHP without SimpleXML_load_file

I am trying to get information from a RSS feed, and it I have managed to what I want using PHP and Jquery, but I want to cron it, and at the moment my app starts using .js, which my host says cannot ...
0
votes
2answers
34 views

Access attributes of XML node with namespace in PHP

I have something like this: $x = simplexml_load_file('myxml.xml'); [...] foreach($x->y->z[0]->w->k as $k){ [...] } My XML file is something like: <x> <y> ...
0
votes
1answer
41 views

PHP newbie- specific scenario on how to parse an XML value stored in a variable using SimpleXML [duplicate]

I want to parse an XML data stored in a variable, using Simple XML. THis is the data I am talking about: <SearchResults:searchresults ...
-1
votes
2answers
57 views

Indirect modification of overloaded element of SimpleXMLElement has no effect

I have a page into my site where I have to parse an xml and insert result into an array. But when I try to insert array rooms I have this error: Indirect modification of overloaded element of ...
0
votes
2answers
58 views

PHP foreach loop not working properly - dies after half array iteration

In this script i am loading an URL, that has 80 items. With the help of simple_html_dom iterating for each item 'tr' which is total of 80. But foreach loop iterating only 42 items in the following ...
0
votes
1answer
31 views

Group XML data based on attribute using SimpleXML

Main Idea: Using Simple XML I want to be able to group my data based upon one of the attributes. An example of my data set up (simplified): [Entry] [Entry Id]1[/Entry Id] [Field 1]First Name[/Field ...
0
votes
1answer
25 views

XML data gives error while trying to fetch

I have a XML like print_r( $eachFeature->unit->attributes() ); wchich gives output SimpleXMLElement Object ( [@attributes] => Array ( [id] => m2 [size] => 76 ) ) and i used ...
0
votes
3answers
34 views

RSS parsing with PHP and SimpleXML: How to enter namespaced items?

I am parsing the following RSS feed (relevant part shown) <item> <title>xxx</title> <link>xxx</link> <guid>xxx</guid> ...
0
votes
1answer
38 views

PHP convert XML to JSON group when there is one child

I use this PHP class to convert XML to JSON:http://www.ibm.com/developerworks/library/x-xml2jsonphp/ For example for this XML: <?xml version="1.0" encoding="UTF-8"?> <searchResult> ...
0
votes
2answers
33 views

PHP read XML output as array

I'm looping through node values in my XML file, but I can't get the output as I need it. Below is the code that I'm working with. PHP: $xml = simplexml_load_file("file.xml") or die("Error: Cannot ...
-2
votes
0answers
45 views

PHP: xml file - Fatal error: Out of memory

hy, i have a problem with a xml file. i use to import xml file but this i think it too big fot my server. usually i do in this way: $content = utf8_encode(file_get_contents('http://example.xml')); ...
0
votes
1answer
36 views

Simple Array Redirect

I'm trying to make a code that redirects a user to a random youtube video based off of the uploader. The script isn't loading at all and I don't know why. Here's the script <?php $feedURL = ...
1
vote
1answer
29 views

Using PHP to parse XML with SimpleXML and having issues with Namespaces

There's a lot of information on SO and PHP.net about using PHP to work with XML but I am having problems finding anything that shows how to work with a namespace in the same way my XML is set up. I ...
0
votes
2answers
31 views

simplexml_load_file('$variable') - variable url from mysql

I hope comeone could help me out with my problem. I have mysql table where is are columns ID and XMLLink, there is only one row which is UPDATED via html/php/mysql form.. My problem is I need to ...
0
votes
2answers
30 views

SimpleXML returning nothing

I have a small script I am building using SimpleXML to parse a small XML file. I have several scripts that I use SimpleXML with and have no problems so I have used it before. So I am not sure why it's ...
0
votes
1answer
43 views

Reading text in `<![CDATA[…]]>` with SimpleXMLElement

I'm importing an RSS feed with SimpleXMLElement in PHP. I'm having trouble with the title and description. For some reason, the website I get the feed from puts the title and description in ...
0
votes
2answers
24 views

PHP - MYSQL: update mysql from xml file

I need to enter data into a mysql database from an xml file. I have no problem with regard to entering and updating data. my problem is with the deletion of data in the database when no longer exists ...
2
votes
4answers
81 views

PHP simpleXML how to check if a nested child exists

I have to process about 750 xml files to generate a rapport. I probably should've went with XSLT or using XPath, but it's probably too late for that. So my question; for the first couple of records it ...
0
votes
1answer
18 views

Issue passing element into method

For my own amusement, I am creating a XML reader class that utilizes PHP's SimpleXMLElement class. Eventually I will port this over to CodeIgniter as a library so I can utilize it in future ...
1
vote
3answers
26 views

simple scenario using simplexml parser for php

so I'm starting to use simplexml parser in the php library (5.5) .. and I thought i understood what was going ono but apparently not ... so I have an xml file that looks liek this <?xml ...
0
votes
1answer
44 views

php parse xml problems

I'm trying to parse an xml generated by excel, but i'm hitting a stag. I cant get anywhere below the Workbook node: $benregxml = simplexml_load_file('00_ben_reg_main.xml'); $wrkbook = ...

1 2 3 4 5 36