XMLWriter::startDocument

xmlwriter_start_document

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

XMLWriter::startDocument -- xmlwriter_start_documentCreate document tag

Опис

Об'єктно-орієнтований стиль

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

Процедурний стиль

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

Starts a document.

Параметри

writer

Тільки для процедурних викликів. Примірник XMLWriter, що буде оброблятися. Цей об'єкт повертається функцією xmlwriter_open_uri() або xmlwriter_open_memory().

version

The version number of the document as part of the XML declaration.

encoding

The encoding of the document as part of the XML declaration.

standalone

yes or no.

Значення, що повертаються

Повертає true у разі успіху або false в разі помилки.

Помилки/виключення

Passing an encoding containing null bytes will throw a ValueError.

Журнал змін

Версія Опис
8.4.0 Passing an encoding containing null bytes will now throw a ValueError.
8.0.0 Тепер writer має бути примірником XMLWriter. Раніше очікувався resource.

Прогляньте також