Dutch PHP Conference 2025 - Call For Papers

XMLReader::XML

(PHP 5 >= 5.1.0, PHP 7, PHP 8)

XMLReader::XMLSet the data containing the XML to parse

Опис

public static XMLReader::XML(string $source, ?string $encoding = null, int $flags = 0): XMLReader
public XMLReader::XML(string $source, ?string $encoding = null, int $flags = 0): bool

Set the data containing the XML to parse.

Параметри

source

String containing the XML to be parsed.

encoding

The document encoding or null.

flags

A bitmask of the LIBXML_* constants.

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

Повертає true у разі успіху або false в разі помилки. If called statically, returns an XMLReader або false в разі помилки.

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

This method may be called statically, but prior to PHP 8.0.0, will issue an E_DEPRECATED error in this case.

Журнал змін

Версія Опис
8.0.0 XMLReader::XML() is now declared as static method, but can still be called on an XMLReader instance.

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

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top