Note that elements opened this way will *remain open* (i.e. the XML will be badly formed and thus invalid) unless *each element* is explicitly closed with XMLWriter::endElement.
If you have multiple elements open, and wish to simply close them all -- including the root element -- this snippet is what you want:
<?php
// Automatically close all remaining open elements.
while ($xml->endElement() !== false) { continue; }
?>
In some cases, XMLWriter::writeElement might serve you better: it writes complete elements, but isn't suitable when you need to loop to generate its contents, unless this is done beforehand.
XMLWriter::endElement
xmlwriter_end_element
(PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
XMLWriter::endElement -- xmlwriter_end_element — Finaliza el actual elemento
Descripción
Estilo orientado a objetos
bool XMLWriter::endElement
( void
)
Estilo por procedimientos
bool xmlwriter_end_element
( resource
$xmlwriter
)Finaliza el actual elemento.
Parámetros
-
xmlwriter -
Sólo para llamadas por procedimientos. El resource XMLWriter que está siendo modificado. Este recurso proviene de una llamada a xmlwriter_open_uri() o xmlwriter_open_memory().
Valores devueltos
Devuelve TRUE en caso de éxito o FALSE en caso de error.
Ver también
- XMLWriter::startElement() - Crea la etiqueta del elemento inicial
- XMLWriter::writeElement() - Escribe una etiqueta completa del elemento
contact at paulchaplin dot com ¶
1 year ago
