Tagged Questions
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.
25
votes
8answers
22k views
18
votes
5answers
13k views
PHP simpleXML how to save the file in a formatted way?
I'm trying add some data to an existing XML file using PHP's SimpleXML. The problem is it adds all the data in a single line:
...
17
votes
4answers
9k views
Forcing a SimpleXML Object to a string, regardless of context
Let's say I have some XML like this
<channel>
<item>
<title>This is title 1</title>
</item>
</channel>
The code below does what I want in that it outputs ...
9
votes
2answers
97 views
SimpleXML & PHP: Convert SimpleXMLObject into PHP Array
Consider the following code:
$string = '<device>
<id>1234</id>
<label>118</label>
<username>root</username>
...
9
votes
8answers
7k views
Best way to process large XML in PHP
I have to parse large XML files in php, one of them is 6.5 MB and they could be even bigger.
The SimpleXML extension as I've read, loads the entire file into an object, which may not be very ...
9
votes
3answers
7k views
Parse XML with Namespace using SimpleXML
I have this as xml:
<event:event>
<event:sessionKey></event:sessionKey>
<event:sessionName>Learn QB in Minutes</event:sessionName>
...
9
votes
11answers
25k views
Remove a child with a specific attribute, in SimpleXML for PHP
I have several identical elements with different attributes that I'm accessing with SimpleXML:
<data>
<seg id="A1"/>
<seg id="A5"/>
<seg id="A12"/>
<seg ...
8
votes
2answers
6k views
Get value from SimpleXMLElement Object
I have something like this:
$url = "http://ws.geonames.org/findNearbyPostalCodes?country=pl&placename=";
$url .= rawurlencode($city[$i]);
$xml = simplexml_load_file($url);
echo $url."\n";
...
7
votes
3answers
559 views
what the difference between PHP's DOM and simpleXML extensions?
mmmm....ok.. i'm failing to comprehend why do we need 2 xml parsers in PHP.
Can someone explain the difference between those? :)
Thanks!
7
votes
3answers
1k views
Something similar to PHP's SimpleXML in Python?
Is there a way in Python to handle XML files similar to the way PHP's SimpleXML extension does them?
Ideally I just want to be able to access certain xml datas from a list object.
6
votes
1answer
605 views
Merge two XML files recursively
I want to merge 2 XML files into one recursively. For example :
1st file :
<root>
<branch1>
<node1>Test</node1>
</branch1>
<branch2>
...
6
votes
1answer
1k views
Serialization third-party classes with Simple XML (org.simpleframework.xml)
I have decided to use Simple XML serialization and was stucked with basic problem. I am trying to serialize java.util.UUID class instance as final field in this small class:
@Root
public class ...
6
votes
3answers
2k views
PHP library for parsing XML with a colons in tag names?
I've been trying to use SimpleXML, but it doesn't seem to like XML that looks like this:
<xhtml:div>sample <xhtml:em>italic</xhtml:em> text</xhtml:div>
So what library will ...
6
votes
3answers
9k views
Looping through a SimpleXML object, or turning the whole thing into an array
I'm trying to work out how to iterate though a returned SimpleXML object.
I'm using a toolkit called Tarzan AWS, which connects to Amazon Web Services (SimpleDB, S3, EC2, etc). I'm specifically using ...
6
votes
1answer
2k views
PHP simplexml: why does xpath stop working?
A strange thing happened after a supplier changed the XML header a bit. I used to be able to read stuff using xpath, but now I can't even get a reply with
$xml->xpath('/');
They changed it from ...
6
votes
4answers
17k views
Using SimpleXML to create an XML object from scratch
Is it possible to use PHP's SimpleXML functions to create an XML object from scratch? Looking through the function list, there's ways to import an existing XML string into an object that you can then ...
5
votes
3answers
209 views
Using Simple XML and getting NoClassDefFoundError in Android
I'm trying to use Simple XML to convert my java objects to XML format in my Android application.
I'm getting NoClassDefFoundError at line
Serializer serializer = new Persister();
...
5
votes
2answers
598 views
How to read iTunes XML file in PHP
For some reason iTunes has decided to use non-standard XML formats with their files... so I'm having trouble reading it with SimpleXMLElement...
iTunes XML sample:
<?xml version="1.0" ...
5
votes
3answers
3k views
5
votes
2answers
548 views
PHP's SimpleXML: How to use colons in names
I am trying to generate an RSS Google Merchant, using SimpleXML.
The sample given by Google is:
<?xml version="1.0"?>
<rss version="2.0"
xmlns:g="http://base.google.com/ns/1.0">
...
5
votes
1answer
2k views
Get root node of XML doc using simplexml
Using simplexml_load_string() how do I get "ForgotPassword" from the following XML?
<?xml version="1.0" encoding="utf-8"?>
<ForgotPassword>
<version>1.0</version>
...
5
votes
3answers
4k views
Access an element's parent with PHP's SimpleXML?
I'm iterating through a set of SimpleXML objects, and I can't figure out how to access each object's parent node. Here's what I want:
$divs = simplexml->xpath("//div");
foreach ($divs as $div)
{
...
5
votes
4answers
5k views
Getting actual value from PHP SimpleXML node
$value = $simpleXmlDoc->SomeNode->InnerNode;
actually assigns a simplexml object to $value instead of the actual value of InnerNode.
If I do:
$value = ...
5
votes
3answers
2k views
What puts less load on a PHP server: SimpleXML or json_decode?
I'm starting to develop a web application in PHP that I hope will become incredibly popular and make me famous and rich. :-)
If that time comes, my decision whether to parse the API's data as XML ...
4
votes
1answer
78 views
XPath problem regarding attributes with namespace
currently I'm trying to read different install.rdf files of Firefox extensions via PHP's SimpleXML.
Unfortunately there's no predefined structure how they have to look.
They are always using two ...
4
votes
2answers
226 views
DomDoc/SimpleXML/XSLT: parsing to add auto-incrementing id attributes to each unique element child of an element
I have been troubleshooting this for a while, and I am kind of new to programming. Even when I find an error, it's very difficult to figure out how to correct it. Right now, I am trying to figure ...
4
votes
3answers
46 views
number from $_GET not being read into simplexml xpath query using php
THIS WORKS:
1 $number = 2;
2 $allofit = simplexml_load_file("thexmlfile.xml");
3 $thebook = $allofit -> booklist[$number] -> abook;
4 echo $thebook;
THIS FOLLOWING DOES NOT WORK:
But if I ...
4
votes
2answers
90 views
SimpleXML weird typecasting behavior
Today one of our clients sent a complaint that on his shop, some prices are a little lower (1,- Kč precisely). When I started to debug, I thought this might be a rounding error. We're using SimpleXML ...
4
votes
3answers
427 views
Android: error including/repacking dependencies who reference javax core classes
I'm working on an Android app using Maven as the build tool. I managed to set evertyhing up correctly (maven dependencies are exported to the apk etc.), however I have one remaining problem which is ...
4
votes
3answers
432 views
PHP 5.3 bug?: Strange simpleXml to array behaviour - breaks at 9941 items
EDIT3: It seems that the problem occurs on my localhost XAMPP PHP 5.3 setup, not on any of the remote servers running php 5.2 that I've tested. Still unclear if its php or xampp (or maybe the ...
4
votes
2answers
290 views
“At sign” @ in SimpleXML object?
This is the output of print_r() run on a typical SimpleXMLElement object:
SimpleXMLElement Object
(
[@attributes] => Array
(
)
)
What does the @ sign mean?
4
votes
5answers
2k views
XML parser error: entity not defined
I have searched stackoverflow on this problem and did find a few topics, but I feel like there isn't really a solid answer for me on this.
I have a form that users submit and the field's value is ...
4
votes
1answer
542 views
SimpleXML Reading node with a hyphenated name
I have the following XML:
<?xml version="1.0" encoding="UTF-8"?>
<gnm:Workbook xmlns:gnm="http://www.gnumeric.org/v10.dtd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
4
votes
4answers
621 views
Extracting data form XML file with SimpleXML in PHP
Introduction:
I want to loop through XML files with flexible categories structure.
Problem:
I don't know to loop through a theoretical infinte subcategories without having to make x amount of "for ...
4
votes
2answers
672 views
Enumerate registered namespaces of a PHP DOMDocument object
For one of my projects, I'm using the DOMDocument class to load and manipulate XML documents.
I'd need to retrieve every namespace used in the document; however, I can't find how I'd do that. The ...
4
votes
5answers
12k views
Error: “Input is not proper UTF-8, indicate encoding !” using PHP's simplexml_load_string
I'm getting the error:
parser error : Input is not proper UTF-8, indicate encoding ! Bytes: 0xED 0x6E 0x2C 0x20
When trying to process an XML response using simplexml_load_string from a 3rd party ...
4
votes
3answers
280 views
Is it possible to insert a comment tag into an xml using simplexml?
I am using SimpleXML to build a document, and wondering whether it is possible to insert comment tag to the document like this:
<root>
<!-- some comment -->
<value>
...
4
votes
2answers
363 views
Convert multi-dimensional multi-object array to standard multi-dimensional array in PHP
I have a multi-dimensional multi-object array from a simplexml_import_dom() function call.
A slice of one section of the array:
[Price] => SimpleXMLElement Object
(
[Prices] => Array
...
4
votes
5answers
2k views
PHP XML Parsing
Which is the best way to parse an XML file in PHP ?
First
Using the DOM object
//code
$dom = new DOMDocument();
$dom->load("xml.xml");
$root = $dom->getElementsByTagName("tag");
...
3
votes
3answers
40 views
SimpleXmlElement->addAttribute() doesn't allow empty strings
Description:
A call like addAttribute("attrname", "") results in
"PHP Warning: SimpleXMLElement::addAttribute(): Attribute name and value are required". In addition to the warning, the attribute is ...
3
votes
4answers
63 views
SimpleXML: Get value where attribute is variable
<path>
<name>
<option id="6523">
<needle>Haystack</needle>
<foo>bar</foo>
</option>
<option ...
3
votes
3answers
75 views
SimpleXML returns empty arrays
I'm trying to get the latitude and longitude of a city with the Google Maps API and through PHP (SimpleXML).
I try to do it like this:
$xml = ...
3
votes
1answer
128 views
Trying to get property of non-object SimpleXML?
I am currently using the following code to retrieve information from a REST api.
$url = "http://api.remix.bestbuy.com/v1/products%28upc=".$upc."%29?apiKey=(API KEY)";
$xmlfiledata = ...
3
votes
1answer
111 views
Error at line -1 when using SimpleXml to parse xml
When parsing my XML files with Simple, I get errors like the following one:
org.simpleframework.xml.core.ValueRequiredException:
Unable to satisfy ... on field 'id' private String Foo.id
for class ...
3
votes
4answers
275 views
Json to xml with greek characters
I am using curl to get a json file which can be located here: (It's way too long to copy paste it): ...
3
votes
1answer
141 views
How can I handle a huge XML file using SimpleXML but to prevent memory and performance problems?
I am trying to avoid XMLReader for an app I build that has a huge XML file.
SimpleXML is easy to write and I was wondering if there is any way to successfully handle it (memory and performance issues) ...
3
votes
3answers
266 views
How do you rename a tag in SimpleXML through a DOM object?
The problem seems straightforward, but I'm having trouble getting access to the tag name of a SimpleXMLElement.
Let's say I have the follow XML structure:
<xml>
...
3
votes
2answers
137 views
PHP Dealing with missing XML data
If I have three sets of data, say:
<note><from>Me</from><to>someone</to><message>hello</message></note>
...
3
votes
1answer
215 views
Read a namespaced attribute from a SimpleXmlElement (imported from XMLReader)
I'm trying to read a large xml file (about 40 MB), and use this data for update the db of my application.
It seems i've found a good compromise in terms of elapsed time/memory using XMLReader and ...
3
votes
3answers
76 views
Why am I getting an array of SimpleXMLElement Objects here?
I have some code that pulls HTML from an external source:
$doc = new DOMDocument();
@$doc->loadHTML($html);
$xml = @simplexml_import_dom($doc); // just to make xpath more simple
$images = ...