PHP 7.0.6 Released

XMLWriter::startElement

xmlwriter_start_element

(PHP 5 >= 5.1.2, PHP 7, PECL xmlwriter >= 0.1.0)

XMLWriter::startElement -- xmlwriter_start_elementCreate start element tag

Description

Object oriented style

bool XMLWriter::startElement ( string $name )

Procedural style

bool xmlwriter_start_element ( resource $xmlwriter , string $name )

Starts an element.

Parameters

xmlwriter

Only for procedural calls. The XMLWriter resource that is being modified. This resource comes from a call to xmlwriter_open_uri() or xmlwriter_open_memory().

name

The element name.

Return Values

Returns TRUE on success or FALSE on failure.

See Also

User Contributed Notes

toby at php dot net
5 years ago
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.
reedsilverstein at gmail dot com
1 year ago
I needed to make a self closing tag with one attribute so I did:

<?php

$writer
->startElement('CookTime');
 
$writer->writeAttribute('minMinute', $cook_time);
$writer->endElement();

?>

Output: <CookTime minMinute="10"/>
marcuslists at brightonart dot co dot uk
6 years ago
Call trim on the tag as a trailing space breaks the end element.
To Top