The simplexmlelement tag has no wiki summary.
2
votes
1answer
57 views
Using PHP to grab data from an XML feed when 2 or more fields have the same name
I am having some issues getting this to work, I have a massive XML feed which I am putting into a MYSQL Database using PHP.
One XML article looks like this...
<Article Created="10:49:51" ...
2
votes
1answer
87 views
Change text of root SimpleXML Element
I'm trying to create a simple wrapper function for outputting my errors in XML for an existing Flash application. I've already read that SimpleXMLElement is not necessarily intended for creating a new ...
2
votes
2answers
114 views
What exactly does PHP's SimpleXMLElement :: children() return?
According to the manual:
Returns a SimpleXMLElement element, whether the node has children or not.
But first of all, this doesn't make sense to me. children() should surely return an array of ...
2
votes
1answer
491 views
How do I create an empty/blank SimpleXMLElement in PHP?
I am trying to use a PHP document to construct an XML document (for AJAX) using PHP 5's built-in SimpleXMLElement class. I want to start with a blank slate and build the XML element by element, but I ...
2
votes
2answers
163 views
PHP, SimpleXML arrays. Unanticipated casting of an array to a string
Sample XML:
<root>
<ratings>3</ratings>
<ratings>5</ratings>
<ratings>7</ratings>
</root>
The following code is the basis for my small ...
2
votes
2answers
395 views
Using addChild with an index position
How can I choose it's position based on it's sibblings when I add a child node ?
Here is an example :
<?php
$_XML = ' <Test>
<Menu>
...
2
votes
1answer
118 views
reading xml: can xpath read 2 fields?
I'm using SimpleXMLElement and xpath to try and read the <subcategory><name> from the xml at the very bottom. This code works.. but the stuff inside the while loop looks a little messy, ...
1
vote
1answer
27 views
SimpleXMLElement and foreach loop issue
I have a function that takes two arguments, the first one $methodName being a string, and the second one $parameters being an array.
function constructRequest($methodName, $parameters) {
// ...
1
vote
2answers
61 views
reading dynamic xml that is created with php
I am creating an xml file dynamiclly with php after I read data from DB.
this is the file:
http://www.gossipbingo.net/gossipApp/cms/xml.php?skin=1
now I want to read that file from another file with ...
1
vote
2answers
508 views
PHP's SimpleXML not handling ’ ; properly
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this into a ’. What can I do to stop this?
Just to answer some of the questions that have come up - I'm pulling an RSS feed ...
1
vote
3answers
75 views
reading the first value using simplexml
I am using simplexml to read all the child nodes successfully. But how do I read the "NumCrds"?
<ACCOUNT NumCrds="1">
<ACCNO>some Bank</ACCNO>
<CURRCODE>CAD</CURRCODE>
...
1
vote
1answer
113 views
SimpleXMLElement to modify root tag
Good day,
I am having trouble modifying XML using SimpleXMLElement in PHP.
My XML structure is as below:
<chart caption='NULL' shownames='1' showvalues='0' decimals='2' numberPrefix='$' ...
1
vote
2answers
111 views
How to get a simple SimpleXMLElement value
I'm aware of how to drill down into the nodes of an xml document as described here:
http://www.php.net/manual/en/simplexml.examples-basic.php
but am at a loss on how to extract the value in the ...
1
vote
1answer
73 views
php simplexmlelement - I can access most properties (except the one with a dash?)
So I run some code like this:
$quote = simplexml_load_string($xml);
$quote = $quote->Stock;
echo 'Name: ';
echo $quote->Name;
echo '<br>';
echo 'Sybmol: ';
echo $quote->Symbol;
echo ...
1
vote
1answer
150 views
php simplexmlelement get first element in one line
Just trying to figure a shorter way to do this:
I'm using simpleXMLElement to parse an xml file and it's aggravating to have to call two lines to process an array when I know what node I want.
...
0
votes
1answer
27 views
Updating a xml file with php simplexml tool
I have a very simple xml content videolar.xml . Flash player takes these elements and plays them. I want to make change the <title> and <youtube> elements by php simplexml. I wrote a code ...
0
votes
1answer
42 views
PHP Parse Soap Reponse Issue - SimpleXMLElement
I'm having problems using PHP SimpleXMLElement and simpleSMLToArray() function to parse a SOAP Response. I'm getting the SOAP response from my SOAP Server just fine. I'm writing both the SOAP Client ...
0
votes
1answer
35 views
combine SimpleXMLElement Object [content] elements into a variable
Hello I have the following php code, from the output $doc I want to take all the [content] items and put them together for use in a tag cloud. How can I extract all the [content] items into one ...
0
votes
0answers
15 views
Retrieving Embedded SimpleXMLElement Objects from Multidimensional Arrays
OK, I am working with multidimensional associative arrays. Inside one of my arrays of arrays, I have an array of SimpleXMLElement Objects. Here is the structure of my array:
[xml] => Array
...
0
votes
0answers
44 views
php can't use SimpleXMLElement(500 server error), and can't echo out data
I have 2 problems.
(1)
I wrote an iphone app to send updated GPS data from iphone periodically(maybe period=1s).
I wrote these lines in server's php
<html>
<body>
<?php
$xmlFile = ...
0
votes
1answer
69 views
Retrieveing Twitter Tweet Entities Image's URL PHP
I have this function to use the search API from twitter
I want to get the display image of a tweet.
The XML is displayed as this :
<link type="image/png" ...
0
votes
2answers
110 views
getting the count of a specific hashtag from twitter PHP
i am able to get all twitter posts of a specific hashtag in PHP. What now is that i want to get the total number of count for that particular hashtag.
i am using curl , SimpleXMLElement as well as ...
0
votes
1answer
18 views
How to obtain the value of an array exposed in var_dump from a SimpleXMLElement return?
I sorry for the aparently easy question for all you experienced developers. But I can´t obtain the answer in any place. So I´ll try here. Maybe help other guy someday.
$xml = new ...
0
votes
1answer
65 views
Using cURL and simpleXMLElement to extract data. How do I get the value of the XML element after XPATH?
I am having some problems extracting the data I want from a SimpleXMLElement object. Here is the basics of the code I am using:
curl_setopt( $ch, CURLOPT_URL, $URL );
$html = curl_exec( $ch );
...
0
votes
1answer
25 views
Getting value from a SimpleXMLElement object
I have
$number[0]
which is a object(SimpleXMLElement) type.
It has just one element.
The element has this pair
0 -- 9
9 is a string I need to have in a variable. How can I do that?
Thanks ...
0
votes
2answers
49 views
storing tweets as xml file
I'm completely at a loss on this one... I've written a function which first checks to see if a XML file of cached tweets exists in a cache directory, then retrieves tweets either from the file or via ...
0
votes
1answer
40 views
Detect Error with SimpleXMLElement?
I want to be able to detect error with SimpleXMLElement, the errors being:
failed to open HTTP stream
failed to load external entity
Uncaught exception 'Exception' with message 'String could not be ...
0
votes
1answer
51 views
PHP — SimpleXMLElement — parsing im:image
How do I extract im:image elements. For instance, I can do this:
$feed=file_get_contents($url);
$xml = new SimpleXMLElement($feed);
$title = $xml->entry[0]->title;
$html = ...
0
votes
1answer
75 views
get the value of simplexmlelement object php
I try too many thing to read the value of the [label] from the code below :
Array ( [0] =>
SimpleXMLElement Object
(
[id] => x
[published] => 2011
...
0
votes
1answer
86 views
Parsing XML in PHP returns SimpleXMLElement Object. What next?
Below is the response I get when I try to parse the XML code returned from Library of Congress SRU Service for a book search. How do I look into [recordData] => SimpleXMLElement Object to get the ...
0
votes
1answer
70 views
Youtube SimpleXMLElement problem
i'm doing something with php for youtube but xml file that appear in the user picture section, does not appear in the output.
code:
$feedURL = 'http://gdata.youtube.com/feeds/api/users/davidguetta';
...
0
votes
1answer
33 views
Changing XML node value
This script should change the TOP value of the specified COMMUNITY node. But it doesn't what could be wrong?
<?php
function make_update( $nodeid, $name, $top, $left, $width, $height ) {
$nodes ...
0
votes
2answers
112 views
SimpleXMLElement::addChild doesn't seem to work with certain strings
In the effiliation pluggin for prestashop, i've found this code:
$values->addChild('marque', '<![CDATA['.$product['manufacturer_name'].']]>');
when in $product['manufacturer_name'], i have ...
0
votes
1answer
136 views
cURL on PHP 5.1.4 not returning anything from xml feed
I am trying to get the code below working on a server running PHP 5.1.4 but it does not appear to be returning anything; print_r($buffer); displays nothing and var_dump($buffer); returns ...
0
votes
1answer
62 views
PHP Repeat XML Request if not Correct
I am using a file_get_contents along with a new SimplexmlElement($xml) in which sometimes the XML I'm pulling has a Error sign like below. I would like to loop the request until the error message is ...
0
votes
0answers
89 views
Get value from simpleXmlElement
I know this is probably quite simple but i just can't seem to crack it.
I do: $xml = new SimpleXMLElement($response);
Then: print_r($xml);
And i get the following:
SimpleXMLElement Object
( ...
0
votes
1answer
168 views
Trouble Storing SimpleXMLElement Object into Array
Array ( [0] =>
SimpleXMLElement Object ( [record] =>
SimpleXMLElement Object ( [f] =>
Array ( [0] => Company
[1] ...
0
votes
1answer
109 views
SimpleXMLElement: Retrieving Namespace Attribute
I've read about hundreds of SO-entries about that, but I can't get it to work. I can't really see what I'm doing wrong. I'm most certainly doing something obviously stupid, but at the moment I can't ...
0
votes
2answers
152 views
Check a specific node value with SimpleXMLElement :: xpath
The following solution finds the datafield with tag="100" and get the value of subfield with code="a". Now I realised that I also need to check if a subfield with code="4" exist and if so check if the ...
0
votes
6answers
198 views
scraping from in between specific identifiable tags from xml
i have the following to extract the currency name currency code country and rate, the problem is that it grabs all the currencies, i would like to only get certain currencies ie only the usd gbp and ...
0
votes
1answer
128 views
How to use XPath on an Array within SimpleXMLElement?
I seem to be running into a problem. Considering the follow XML structure:
<data>
<row>
<id>1</id>
<name>Peter</name>
</row>
...
0
votes
1answer
308 views
Errors - what could they mean? Also is there another way to pull data besides the example code?
I am trying to pull data from api cart but I am not experienced with API or PHP - it would be my still-first-time experience to try working on API. I am wondering what the errors mean. Also I would ...
0
votes
2answers
311 views
SimpleXMLElement and encoding problems
I load a RSS (XML) document into an SimpleXmlElement the following way:
$x = new SimpleXmlElement($content);
I'we also tested with:
$x = simplexml_load_string($content);
When I print out the ...
0
votes
1answer
101 views
Problem with retriving subnodes in simplexml
if i have this xml :
<field name="gender" type="select1">
<label>Gender</label>
<item>
<label>Male</label>
<value>1</value>
...
0
votes
1answer
837 views
Match text with XPATH syntax
Exmple feed: view-source:http://rss.packetstormsecurity.org/files/tags/exploit/
I only want to return sections of xml where the parent title node has matching text in it, in this example the text to ...
0
votes
2answers
371 views
PHP XPath: How to get element content?
I need some PHP/Xpath help. Can anyone give me sample code to follow?
The following is a snippet of XML from Amazon Web Service pertaining to the categories of a book (in this case, the book falls ...
0
votes
1answer
2k views
SimpleXMLElement (PHP) throwing error on XML root attributes
I am working on a project that will take XML data submitted through a textarea input in a form then extract the data and throw it into a database. I am getting errors about the attribute in the root ...
0
votes
4answers
2k views
PHP get values from SimpleXMLElement array
I have this:
[1]=>
object(SimpleXMLElement)#6 (1) {
["@attributes"]=>
array(14) {
["name"]=>
string(5) "MySQL"
["acknowledged"]=>
string(1) "1"
["comments"]=>
...
0
votes
3answers
346 views
Possible to add HTML content to SimpleXMLElement node
Hey all,
Simple question. Is it possible to add a block of HTML in a SimpleXMLElement (or as a matter of fact, DOMDocument) node without auto-converting the HTML data into entity format?
For ...
-2
votes
2answers
104 views
SimpleXml Element: Special Characters Error
I am using simpleXml to parse my xml but it always breaks the page when i try to parse Spanish, french, Estonian, Portuguese, superscripts or subscripts.
Any Idea ??
Example of the XML :-
...