0
votes
4answers
38 views
reading twitter’s rss search feed with simple xml
Having some trouble selecting some nodes in the rss feed for twitter's search
the rss url is here
http://search.twitter.com/search.rss?q=twitfile
each item looks like this
< …
0
votes
3answers
79 views
Accessing HTML inside XML using SimpleXML in PHP
Hi,
I'm having a problem with SimpleXML. When I'm using the children() method to get the contents of an XML element, with elements that contain HTML, it will parse the HTML conten …
1
vote
2answers
10 views
Mixing childs with cdata under the same node. Is it valid?
Hi, I need to parse the following xml document (which is coming from external web service):
...
<dati>
<Riconoscimento>
<IdentificativoPosizione>xxxx …
1
vote
1answer
56 views
PHP SimpleXML XPath contains() to find other elements referenced by this element
Hi Guys ang Gals,
I'm being given XML in the following format, and am parsing it with PHP's SimpleXML.
<?xml version="1.0" encoding="UTF-8"?>
<ManageMyBooking>
&l …
0
votes
3answers
42 views
php - how to display values from a SimpleXMLElement
how do i display individual values from the following code?
SimpleXMLElement Object (
[@attributes] => Array
(
[stat] => ok
…
0
votes
2answers
31 views
Filtering a structure in XML by attribute
I have a nested simple XML structure that I load with PHP's simpleXML.
Some elements of the structure contain "context" attributes.
<tab context="new_item, edit_item">
&l …
3
votes
6answers
4k 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"/ …
1
vote
5answers
508 views
How to tell apart SimpleXML objects representing element and attribute?
I need to print arbitrary SimpleXML objects in a specific manner, with special handling of attribute nodes.
The problem is that SimpleXML elements and attributes seem to use exact …
1
vote
2answers
227 views
Parsing google calendar XML feed
Hi
I've got XML feed from public google calendar. Looks like this:
<?xml version='1.0' encoding='UTF-8'?>
<feed xmlns='................' xmlns:gd='http://schemas.goo …
0
votes
1answer
46 views
php: parsing table structure with SimpleXML
Hi, I'm trying to read in an xml file that for some reason has been modeled in a table structure like so:
<tr id="1"><td name="Date">10/01/2009</td><td name=" …
1
vote
3answers
47 views
Inject XML into a node using a string
I am rebuilding a nodes children by saving them out to an array as strings, trashing them in the XML, inserting a new child node into the array as a string... now I want to loop t …
0
votes
1answer
32 views
problem with simpleXMLElement
Here is my PHP code
$xml= new SimpleXmlElement($rawxml);
foreach($xml->children()->children() AS $key){
$id = $xml->{"id"};
$name = $xml->{"screen_name"};
$prof …
0
votes
4answers
39 views
Retrieving attributes from a SimpleXMLElement
How would I get to the name variable given the object. $obj->@attributes['name']; would obviously not work.
SimpleXMLElement Object
(
[@attributes] => Array
(
…
0
votes
1answer
19 views
get list of children in SimpleXMLElement PHP
how do i get the list of children in xml->request->ABC
ABC may have DEF, ZZA, XAS, ETC and i would like to iterate through a list of these children (name required) instead of check …
0
votes
4answers
227 views
Sort XML via attribute value PHP
So I have an XML file that I am trying to loop through in order, according to the attribute, "order".
Here is an example:
<page>
<talentTrees>
<tree name="Football …
