XMLWriter::startElement

(No version information available, might be only in CVS)

XMLWriter::startElement — Create start element tag

Описание

Object oriented style:

XMLWriter
bool startElement ( string $name )

Procedural style:

bool xmlwriter_start_element ( resource $xmlwriter , string $name )

Starts an element.

Список параметров

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.

Возвращаемые значения

Возвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки.

Смотрите также

Коментарии

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.
2010-10-21 14:01:17
http://php5.kiev.ua/manual/ru/function.xmlwriter-start-element.html
I'm using PHP 7.1, not sure how many versions are affected but if you try to start an element that is a number or starts with a number (ie. 1 or 1TBS) it won't write it and messes up your XML.
2018-04-25 17:59:54
http://php5.kiev.ua/manual/ru/function.xmlwriter-start-element.html

    Поддержать сайт на родительском проекте КГБ