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
(PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
XMLWriter::startElement — Crea la etiqueta del elemento inicial
Descripción
Estilo orientado a objetos
bool XMLWriter::startElement
( string $name
)
Estilo por procesos
bool xmlwriter_start_element
( resource $xmlwriter
, string $name
)
Inicia un elemento.
Parámetros
- xmlwriter
-
Sólo para llamadas procedimentales. El resource XMLWriter que está siendo modificado. Este recurso proviene de una llamada a xmlwriter_open_uri() o xmlwriter_open_memory().
- name
-
El nombre del elemento.
Valores devueltos
Devuelve TRUE en caso de éxito o FALSE en caso de error.
Ver también
- XMLWriter::endElement() - Finaliza el actual elemento
- XMLWriter::writeElement() - Escribe una etiqueta completa del elemento
toby at php dot net
21-Oct-2010 06:01
marcuslists at brightonart dot co dot uk
16-Oct-2009 12:10
Call trim on the tag as a trailing space breaks the end element.
