The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
23 views

Convert SimpleXMLElement to Array

There is a problem with convert SimpleXMLElement to Array if you use the following decision $objXml = simplexml_load_string($dataXml); $arrImportItems = json_decode(json_encode($objXml), TRUE); if ...
-2
votes
0answers
19 views

How to reveal/show the contents/values of these PHP variable's within a Simple xml string? [closed]

Please my desired outcome is to produce/parse the contents (URLs) of these 2 working PHP variables ( $image1 and $image2) at lines 6 and 7 within this particular XML string. 1 $id = ...
0
votes
1answer
28 views

How with PHP parse entity content through to simple xml string ID attributes

Below is the current outcome of “$image1” entity that provides a live URL xml feed $output .= "<image>".$image1."</image>\n"; Below is my working ID attributes that are required for ...
0
votes
0answers
45 views

How to parse two defined entity's with simple XML, PHP

Below is my current published XML feed structure. I now need to parse these working entitys from ($output command of which they parse URL's) $image1 and $image2 to work under simple string xml and ...
0
votes
0answers
233 views

Magento - SimpleXML_Load_String Error when GBP Sign in Config Table

We have a Magento site running Enterprise Edition 1.12. Whenever a pound sign (£) is entered into the site configuration (i.e. it goes into the core_config_data table) the site is failing with the ...
0
votes
1answer
89 views

Creating a repetitive node from a hash array with simplexml_load_string, a cycle and variables

=) I need your kindly help to accomplish a simple task. I've been searching but I can't find what I need. It shouldn't be difficult, probably it's a matter of syntax =) I create a string representing ...
0
votes
0answers
42 views

Trouble reading feed

I would like to read a specific feed. But I'm running into some trouble. This is my code. function getBluray() { $data = file_get_contents('http://example.com/'); $data = ...
0
votes
2answers
76 views

Tags still remaining after using simplexml_load_string

I am using simplexml_load_string for XML packets. In my scenario, the XML string I want to convert is known as k. My problem, however, is that when I use k, tags still remain that weren't parsed ...
0
votes
1answer
716 views

PHP Parsing XML response with simplexml_load_string()

I'm running into a parse error for some reason. I've narrowed it down to the "what", but not the "why". Here's my testing script: <?php $xml_string = '<?xml version="1.0" ...
0
votes
2answers
224 views

Simplexml_load_string does work with a direct link to XML file, but won't work with file_get_contents('php://input')

Searched a lot for this on StackOverflow and Google but can't seem to find an answer to this specific situation I'm working with a client that sends me an XML file via PHP POST and this is the code I ...
0
votes
1answer
291 views

XML ATOM to SimpleXML Object losing data

Hi, i have a simple problem. When i try to convert an atom XML string to simplexml object or using simplexml_load_data function, it seems to drop many attributes data.. like in my original string i ...
0
votes
1answer
276 views

Getting non object error when using PHP SimpleXMLElement::attributes [closed]

I have the following code that is giving me the error 'Fatal error: Call to a member function attributes() on a non-object in /home/skunk/public_html/index.php on line 24': $api_xml = ...
0
votes
1answer
189 views

Updating MongoDB using PHP simplexml_load_string function variables adding extra '0' key to value

I have a script that is attempting to update a MongoDB collection with an xml response I've received from a server. I'm envoking simplexml_load_string() on the response. However, when updating the ...
0
votes
2answers
400 views

Trouble with simplexml_load_string in PHP with Soap response

few edits* I'm using SoapClient to work with a Web Service which results with a sequence of anyTypes. I have tried to use simplexml_load_string on the response (possibly wrongly) and it fails ...
0
votes
1answer
129 views

php simplexmlelement directly access element

I have a simple XML structure like, that when parse with simplexml_load_string generates this: SimpleXMLElement Object ( [@attributes] => Array ( [token] => ...
0
votes
0answers
374 views

How to deserialize XML to a complete object in PHP

i need some help here, i found here many answers from how to access values from a object. but no ways to deserealize an xml in an object usable, because when i try to use the function ...
1
vote
0answers
220 views

Parsing PHP soap responses

I am getting soap response from Bluegrace shipping,Can anyone please help me to extract particular data from simpleXMLLoadElement object. I am creating custom shipping module for Magento with ...
1
vote
1answer
178 views

simplexml_load_string loose data

I'm currently using file_get_contents to get an xml. It work well and when I display the xml with the correct MIME type header('Content-type: text/xml') I obtain something like this : <?xml ...
0
votes
1answer
256 views

Array having simplexml object.How to fetch it using foreach loop

i am having this code that is used for parsing a xml url and stores output in the $query variable. $url = 'http://www.slideshare.net/api/2/search_slideshows?api_key=GRCsS0fPo& ...
0
votes
1answer
234 views

How to load several XML files into one string using simplexml_load_string?

I have three xml files that I want to load into my php file with the simplexml_load_string function. How can I achieve this? @Jan-Henk: Here is what I wrote on the comments: This is what I have ...
0
votes
2answers
3k views

Can't read an XML file with simplexml_load_string

I have been trying to read the xml file, but it is giving me a strange error. My XML is as follows <?xml version='1.0' encoding='UTF-8'?> <response> ...
0
votes
1answer
416 views

Simplexml_load_string() removing a lot of content

Simplexml_load_string is removing a lot of content that is passing into it. var_dump($cleaned); <item> <title><![CDATA[Honda Motor Company: Motorcycles to the Civic and ...
0
votes
2answers
614 views

Help with SimpleXML for $response in PHP

I am sending a XML to a webserver using PHP, and the server returns an XML response. I need help parsing values from the response! I have read the SimpleXML instructions, but my understanding is that ...
1
vote
3answers
427 views

Iconv, posted data and simpleXML

So I am using simplexml_load_string on some posted XML. However I get the below error. Warning: simplexml_load_string() [function.simplexml-load-string]: Entity: line 8: parser error : Input is not ...
0
votes
2answers
222 views

Simple XML from string - what's missing?

I'm driving myself crazy here, I'm almost positive I am at least on the right track. I'm just trying to parse a response that I am getting from an API that comes back in XML. I really only need to ...
0
votes
1answer
293 views

Using simplexml_load_string to convert xml with multiple name spaces?

How would I use simplexml_load_string() to convert the following bit of xml to a usable php object? <soapenv:envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> <env:header ...
0
votes
1answer
847 views

SOAP XML parsing with simplexml_load_string

I'm trying to parse a simple xml soap response with simplexml_load_string without success. I have already tried a lot of ways that I found in other questions without success. The XML is: <?xml ...
1
vote
1answer
1k views

Entity 'acirc' not defined from simplexml_load_string

So I have a PHP Script thats parsing an XML Response from Google Analytics. It has been working for a few weeks, but today I've been getting this warning, and simple xml load string is not converting ...
0
votes
4answers
2k views

Parsing an XML response using simplexml_load_string

I am using PHP to parse an XML response, After some debugging, I have found a strange occurrence with my application. This is what I've been doing, I make the request and then I echo the entire ...
0
votes
2answers
2k views

How have foreach loop with this simplexml_load_string

I am parsing xml using simplexml_load_string like this : $xml = simplexml_load_string($response); echo '{'. '"Date":"'.$xml->Date[0].'",'. ...
1
vote
3answers
385 views

simplexml_load_string() != simplexml_import_dom()?

If I load an HTML page using DOMDocument::loadHTMLFile() then pass it to simplexml_import_dom() everything is fine, however, if I using $dom->saveHTML() to get a string representation from the ...
1
vote
2answers
934 views

cURL Response in XML - Simplexml_load_string failed

I'm making a cURL request into an authenticated area which is working fine; and when echoing out the response everything looks good except for the first part. This is my exact response (with the ...
2
votes
3answers
3k views

php parse simple xml attributes

I'm having some trouble with an xml file, I have found all sorts of examples/guides around the web and on this site but I can't seem to see one like this: I have an XML file like so: <?xml ...
-2
votes
1answer
271 views

simplexml_load_string: how to get openSearch:itemsPerPage in youtube's video feed?

using simplexml_load_string how to get openSearch:itemsPerPage value from a feed in this format: http://code.google.com/apis/youtube/2.0/developers_guide_protocol_understanding_video_feeds.html
0
votes
1answer
1k views

Errors parsing XML using simplexml on my 1&1 webserver but not local EasyPHP server?

I'm new to php and web coding so any help would be great. I'm having some issue with the transmission of an xml string between an iOS app and my webserver. When sending the xml request I get a ...
0
votes
2answers
343 views

Twitter API simplexml_load_string stop working

This morning my PHP script, for Twitter OAuth posting, stopped working. I suspect that Twitter added some rows for the returned string. Can anyone help how to debug this. Thanks Warning: ...
0
votes
1answer
197 views

PHP SOAP issue feeding in results

I'm trying to create a page that displays current results from CA Lottery using PHP. I've used XML before, but am having issues with SOAP. I found this page, but its not a lot of help. I've put ...
1
vote
1answer
303 views

simplexml_load_string() doesn't like foreign languages

I am receiving an XML response which comes through perfectly. Words such as "português" and "españa" are correctly formatted. However, once I have parsed the XML through the php function ...
-1
votes
2answers
802 views

php mysql simplexml_load_string() error mysql_escape_string

I save a XML file content in MySQL database with: $content = mysql_escape_string($content); $insert = mysql_query("insert into $db_table_xml (url,content) values ('$url','$content')" ); //content ...
-1
votes
1answer
822 views

simplexml load on google weather api prooblem

Hi I have been having problems with the google weather api having errors Warning: simplexml_load_string() [function.simplexml-load-string]: Entity: line 2: parser error .... I tried to use the script ...
0
votes
1answer
214 views

simplexml_load_string doesn't work

I am working on php platform and using simplexml_load_string to process my xml. but somewhere my xml contains youtube video object like <object width="425" height="355"><param name="movie" ...
0
votes
2answers
367 views

XML in _POST variable not converting to XML when using PHP's simplexml_load_string

I have this PHP script that is catching a variable from this partner of ours. In the variable is a string of XML. When they process the file, it keeps giving errors like this : Warning: ...
0
votes
2answers
2k views

PHP: simplexml_load_string

Using PHP's simplexml_load_string how do I get the values of a tag has a particular attribute set to a particular value?
1
vote
3answers
131 views

which is better expression to make string into xml object[php]?

which is better expression to make string into xml object[php]? $xml = new SimpleXMLElement($xml_string); vs $xml = simplexml_load_string($xml_string); same?
0
votes
1answer
173 views

Handling ajax failed response

My error handling isn't working on this ajax request... Just now my "r" was <br /> <b>Warning</b>: simplexml_load_string() [ <a href='function.simplexml-load-string'> ...
1
vote
1answer
345 views

How to access custom XML elements via SimpleXML

How can I access custom XML elements via SimpleXML. So if I have... <rss> <custom:element></custom:element> </rss> Right now these elements are simply being ignored when ...
1
vote
3answers
907 views

simpleXML node access by index problem

I am receiving an XML response based on a request I place to a server and it does in fact return a valid set of results that I can dump on the screen using print_r() Result set looks like this(edit: ...
2
votes
1answer
3k views

Another PHP XML parsing error: Input is not proper UTF-8, indicate encoding !

Error: Warning: simplexml_load_string() [function.simplexml-load-string]: Entity: line 3: parser error : Input is not proper UTF-8, indicate encoding ! Bytes: 0xE7 0x61 0x69 0x73 XML ...
2
votes
1answer
139 views

SimpleXML seems to not load anything…?

This is really baffling me. I've never used XML before, so I'm just playing about (it's the middle of the night of course...!) The code: $xml_string = "<?xml version="1.0" encoding="utf-8" ...
0
votes
2answers
8k views

PHP - SimpleXML parse error

SEE EDITS AT BOTTOM TO SHOW MORE ACCURATE ERROR OUTPUT I'm parsing somewhat large (~15MB) XML files with PHP for the first time using SimpleXML. The files are flight search results so they have long ...

1 2