XMLWriter::startDocument

xmlwriter_start_document

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

XMLWriter::startDocument -- xmlwriter_start_documentCrea un documento

Descripción

Estilo orientado a objetos

public XMLWriter::startDocument(?string $version = "1.0", ?string $encoding = null, ?string $standalone = null): bool

Estilo por procedimientos

xmlwriter_start_document(
    XMLWriter $writer,
    ?string $version = "1.0",
    ?string $encoding = null,
    ?string $standalone = null
): bool

Comienza un documento.

Parámetros

xmlwriter

Sólo para llamadas por procedimientos. El resource XMLWriter que está siendo modificado. Este recurso proviene de una llamada a xmlwriter_open_uri() o xmlwriter_open_memory().

version

El número de versión del documento en la declaración XML.

encoding

La codificación del documento en la declaración XML.

standalone

yes o no.

Valores devueltos

Devuelve true en caso de éxito o false en caso de error.

Errores/Excepciones

Pasar un encoding que contenga bytes nulos lanzará una excepción ValueError.

Historial de cambios

Versión Descripción
8.4.0 Pasar un encoding que contenga bytes nulos lanza ahora una excepción ValueError.
8.0.0 writer expects an XMLWriter instance now; previously, a resource was expected.

Ver también

add a note

User Contributed Notes 1 note

up
3
Sbastien
3 years ago
XMLWriter::startDocument() writes the XML declaration.

Without XMLWriter::startDocument() :

<?php

$xml
= new XMLWriter();
$xml->openUri('php://stdout');
$xml->writeElement('message', 'Hello World!');
exit;

/*
Outputs :
<message>Hello World!</message>
*/
?>

With XMLWriter::startDocument() :

<?php

$xml
= new XMLWriter();
$xml->openUri('php://stdout');
$xml->startDocument();
$xml->writeElement('message', 'Hello World!');
exit;

/*
Outputs :
<?xml version="1.0"?>
<message>Hello World!</message>
*/
?>
To Top