PHP » GoLang |
login |
register |
about
|
GoLang SimpleXMLElement::addAttribute
request it (298)
GoLang replacement for PHP's SimpleXMLElement::addAttribute
[edit | history]
PHP SimpleXMLElement::addAttributePHP original manual for SimpleXMLElement::addAttribute [ show | php.net ]SimpleXMLElement::addAttribute(PHP 5 >= 5.1.3, PHP 7) SimpleXMLElement::addAttribute — Adds an attribute to the SimpleXML element Description
public void SimpleXMLElement::addAttribute
( string
$name
[, string $value
[, string $namespace
]] )Adds an attribute to the SimpleXML element. Parameters
Return ValuesNo value is returned. Examples
Example #1 Add attributes and children to a SimpleXML element
<?php The above example will output something similar to: <?xml version="1.0" standalone="yes"?> <movies type="documentary"> <movie> <title>PHP: Behind the Parser</title> <characters> <character> <name>Ms. Coder</name> <actor>Onlivia Actora</actor> </character> <character> <name>Mr. Coder</name> <actor>El ActÓr</actor> </character> </characters> <plot> So, this language. It's like, a programming language. Or is it a scripting language? All is revealed in this thrilling horror spoof of a documentary. </plot> <great-lines> <line>PHP solves all my web problems</line> </great-lines> <rating type="thumbs">7</rating> <rating type="stars">5</rating> </movie> <movie> <title>PHP2: More Parser Stories</title> <plot>This is all about the people who make it work.</plot> <characters> <character> <name>Mr. Parser</name> <actor>John Doe</actor> </character> </characters> <rating type="stars">5</rating> </movie> </movies> |
more
Recently updated
more
Most requested
more
Last requests
|