PHP Conference Nagoya 2025

XMLReader::fromString

(PHP 8 >= 8.4.0)

XMLReader::fromStringCreates an XMLReader from an XML string

Descripción

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

Creates an XMLReader from an XML string.

Parámetros

source

La cadena que contiene el XML a ser analizado.

encoding

La codificación del documento o null.

flags

Una mascara bit de la constante LIBXML_*.

Valores devueltos

Returns an XMLReader.

Errores/Excepciones

  • Passing an invalid encoding will throw a ValueError.

Ver también

add a note

User Contributed Notes

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