PHP Conference Nagoya 2025

XMLReader::fromString

(PHP 8 >= 8.4.0)

XMLReader::fromStringCréer un XMLReader à partir d'une chaîne XML

Description

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

Créer un XMLReader à partir d'une chaîne XML.

Liste de paramètres

source

Chaîne de caractères contenant le XML à analyser.

encoding

L'encodage du document, ou null.

flags

Un masque de constantes LIBXML_*.

Valeurs de retour

Renvoie un XMLReader.

Erreurs / Exceptions

  • Passer un encoding invalide lèvera une ValueError.

Voir aussi

add a note

User Contributed Notes

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