Tagged Questions
0
votes
1answer
71 views
PHP/SimpleXML. How to add child to node returned by xpath?
I have a simple XML string:
$sample = new SimpleXMLElement('<root><parent><child1></child1></parent></root>');
and i try to find node with xpath() and add child ...
0
votes
1answer
99 views
Creating XML File using simplexml_load_string, addChild, and addAttribute
This is what I have so far:
This is the output I am receiving: http://i.imgur.com/mGRAJPe.gif
It seems all of the subfield nodes are becoming a child of the 1st datafield element, instead of being ...
0
votes
3answers
59 views
Applying a value to a new XML element with attributes using PHP's simpleXML
Here is a function (in a class that deals with comments) that creates a comment element
function add($id,$message){
$newcomment = $this->source->addChild('comment');
...
1
vote
1answer
71 views
SimpleXMLElement addChild issue with namespaces
It's really quite simple. I'd like to $item->addChild('media:thumbnail') but it's not behaving as it removes 'media:'...
I am wondering how the following can be accomplished using SimpleXMLElement.
...
0
votes
0answers
55 views
Why are these SimpleXML operations not working in PHP?
I have this problem in PHP: I want to make a script that changes the content of a node or adds a node of a XHTML document, with these parameters given:
page: the page the document is in
action: edit ...
1
vote
1answer
92 views
PHP SimpleXML fatal error when using addChild on a concatenated var
I'm trying to use the addChild function on a concatenated var, and it doesn't seem to work. I suppose it comes from the object type of the argument but I can't seem to be able to put the finger on it.
...
1
vote
1answer
153 views
simple xml add namespaced child
I'm using SimpleXML to create an RSS feed for Google Products and I want to create a namespaced child but when I do for example
$item->addChild('g:id', 'myid');
it adds
...
0
votes
2answers
431 views
How to add an element to an array inside a SimpleXMLElement Object
I have this object parsed using SimpleXML:
SimpleXMLElement Object
(
[contact] => SimpleXMLElement Object
(
[name] => Some guy
[number] => **********
)
[messages] ...
1
vote
1answer
953 views
PHP SimpleXML->addChild - unwanted empty namespace attribute
I'm attempting to use SimpleXML's addChild method of the SimpleXMLElement (actually a SimpleXMLIterator which is a subclass of SimpleXMLElement) to add child elements.
My problem is that the source ...
0
votes
1answer
444 views
Help! How to add Child to specify Node using PHP simpleXML?
my xml structure is:
<users>
<user id="126">
<name>θι»ηδΈ</name>
<watchHistory>
<whMonthRecords month="2010-10">
...
0
votes
1answer
1k views
SimpleXml PHP addchild before any child
I know how to add child nodes with SimpleXml and PHP but i have a problem with the orders of those child elements.
Lets say i have this xml structure
album
gallery1
gallery2
gallery2
...
0
votes
1answer
488 views
SimpleXML addChild and addAttribute doesnt insert variables
For some reason, my addChild and addAttribute functions only seem to work when I enter in direct strings. They don't work when I enter in a variable string that I received from a html form POST.
...
0
votes
4answers
3k views
PHP SimpleXML::addChild with empty string - redundant node
Calling addChild with an empty string as the value (or even with whitespace) seems to cause a redundant SimpleXml node to be added inside the node instead of adding just the node with no value.
...