PHP Velho Oeste 2024

XMLWriter::startElement

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

XMLWriter::startElementBir eleman başlangıç etiketi oluşturur

Açıklama

Nesne yönelimli kullanım

startElement ( string $isim ) : bool

Yordamsal kullanım

xmlwriter_start_element ( resource $xmlwriter , string $isim ) : bool

Bir elemanı başlatır.

Değiştirgeler

xmlwriter

Sadece yordamsal kullanım için. xmlwriter_open_uri() veya xmlwriter_open_memory() çağrılarıyla elde edilen, üzerinde işlem yapılacak XMLWriter özkaynağı.

isim

Elemanın ismi.

Dönen Değerler

Başarı durumunda TRUE, başarısızlık durumunda FALSE döner.

Ayrıca Bakınız

add a note add a note

User Contributed Notes 2 notes

up
2
toby at php dot net
13 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
1
indy at driftsolutions dot com
6 years ago
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.
To Top