PHP Velho Oeste 2024

XMLWriter::startElementNS

xmlwriter_start_element_ns

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

XMLWriter::startElementNS -- xmlwriter_start_element_nsCreate start namespaced element tag

설명

객체 기반 형식

bool XMLWriter::startElementNS ( string $prefix , string $name , string $uri )

절차식 형식

bool xmlwriter_start_element_ns ( resource $xmlwriter , string $prefix , string $name , string $uri )

Starts a namespaced element.

인수

xmlwriter

순차적 호출에서만 사용. XMLWriter resource가 수정됩니다. 이 자원은 xmlwriter_open_uri()xmlwriter_open_memory() 호출로 만들어집니다.

prefix

The namespace prefix.

name

The element name.

uri

The namespace URI.

반환값

성공 시 TRUE를, 실패 시 FALSE를 반환합니다.

참고

add a note add a note

User Contributed Notes 2 notes

up
1
pike-php at kw dot nl
13 years ago
by default, the xmlns: definition is repeated on every element.

if you do want the prefix, but dont want the xmlns: declaration repeated, set the namespace to null. dont forget to declare the namespace prefix somewhere higher in your document, though:

<?php
$w
->startElementNS('foo', 'bar', 'http://example.com/foo');
$w->startElementNS('foo', 'baz', null);
$w->endElement();
$w->endElement();
?>
up
0
anthony dot parsons at manx dot net
16 years ago
If you don't want any namespace prefix at all but still want the xmlns attribute, set $prefix to null.
To Top