downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

XMLWriter::startPI> <XMLWriter::startElementNS
[edit] Last updated: Fri, 24 May 2013

view this page in

XMLWriter::startElement

xmlwriter_start_element

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

XMLWriter::startElement -- xmlwriter_start_element要素の開始タグを作成する

説明

オブジェクト指向型

bool XMLWriter::startElement ( string $name )

手続き型

bool xmlwriter_start_element ( resource $xmlwriter , string $name )

要素を開始します。

パラメータ

xmlwriter

手続き型のコールでのみ使用します。 変更される XMLWriter resource です。 このリソースは、 xmlwriter_open_uri() あるいは xmlwriter_open_memory() のコールによって取得したものです。

name

要素名。

返り値

成功した場合に TRUE を、失敗した場合に FALSE を返します。

参考



add a note add a note User Contributed Notes XMLWriter::startElement - [2 notes]
up
0
toby at php dot net
2 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.
up
0
marcuslists at brightonart dot co dot uk
3 years ago
Call trim on the tag as a trailing space breaks the end element.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites