PHP Conference Nagoya 2025

XMLReader::fromString

(PHP 8 >= 8.4.0)

XMLReader::fromStringCreates an XMLReader from an XML string

Beschreibung

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

Creates an XMLReader from an XML string.

Parameter-Liste

source

Zeichenkette mit XML-Inhalt, der geparst werden soll.

encoding

Dokumentkodierung oder null.

flags

Bitmaske bestehend aus LIBXML_*-Konstanten.

Rückgabewerte

Returns an XMLReader.

Fehler/Exceptions

  • Passing an invalid encoding will throw a ValueError.

Siehe auch

add a note

User Contributed Notes

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