Tagged Questions
0
votes
1answer
77 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
101 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
60 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
56 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
93 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.
...
3
votes
1answer
65 views
Has someone run across a way to force PHP SimpleXMLElement node names to upper case?
The API integration documents specify that that all node name are case sensitive. I'm using PHP SimpleXMLElement and I don't see a way to force upper case node names. Has someone run across a way to ...
1
vote
1answer
154 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
436 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
2answers
804 views
ActionScript AddChild to Stage from Class
I am trying to add an object to my main stage via the addChild() method. Normally, when working within the FLA itself, using addChild(myObject) works just fine. However, it does not work within an ...
1
vote
1answer
955 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
447 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
...
-3
votes
1answer
497 views
SimpleXML addChild and addAttribute doesnt insert variables [closed]
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.
...
3
votes
4answers
342 views
Adding elements to other elements
I have been using .net for the past couple of years, and I like the way you can add controls at any point in the page from anywhere. For example, you can say Head.Controls.add(new LiteralControl("")) ...
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.
...