Note that startElement() and startElementNS() naturally do not write the closing ">" of the tag, since you may add an arbitrary number of attributes after starting a tag.
However, in some cases you may want to have the starting element tag closed in the output buffer before writing any further elements or content (e.g. if you communicate via an XML stream). To achieve this, you can simply use the text() method with an empty string.
XMLWriter::startElement
xmlwriter_start_element
(PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
XMLWriter::startElement -- xmlwriter_start_element — Crée un élément
Description
Style orienté objet
bool XMLWriter::startElement
( string
$name
)Style procédural
bool xmlwriter_start_element
( resource
$xmlwriter
, string $name
)Commence un élément.
Liste de paramètres
-
xmlwriter -
Uniquement pour les appels procéduraux. La ressource XMLWriter qui a été modifiée. Cette ressource provient d'un appel à xmlwriter_open_uri() ou xmlwriter_open_memory().
-
name -
Le nom de l'élément.
Valeurs de retour
Cette fonction retourne TRUE en cas de
succès ou FALSE si une erreur survient.
Voir aussi
- XMLWriter::endElement() - Termine l'élément courant
- XMLWriter::writeElement() - Écrit un élément
toby at php dot net ¶
2 years ago
marcuslists at brightonart dot co dot uk ¶
3 years ago
Call trim on the tag as a trailing space breaks the end element.
