PHP Conference Nagoya 2025

XMLReader::fromStream

(PHP 8 >= 8.4.0)

XMLReader::fromStreamCreates an XMLReader from a stream to read from

Descrição

public static XMLReader::fromStream(
    resource $stream,
    ?string $encoding = null,
    int $flags = 0,
    ?string $documentUri = null
): static

Creates an XMLReader from a stream to read from.

Parâmetros

stream
The stream to read the XML from.
encoding
The document encoding or null.
flags
A bitmask of the LIBXML_* constants.
documentUri
Optional document base URI.

Valor Retornado

Returns an XMLReader.

Erros/Exceções

  • Passing an invalid encoding will throw a ValueError.
  • Passing a resource that is not a stream to stream will throw a TypeError.

Veja Também

adicione uma nota

Notas Enviadas por Usuários (em inglês)

Não há notas de usuários para esta página.
To Top