PHP Conference Nagoya 2025

XMLReader::fromStream

(PHP 8 >= 8.4.0)

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

Açıklama

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.

Bağımsız Değişkenler

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.

Dönen Değerler

Returns an XMLReader.

Hatalar/İstisnalar

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

Ayrıca Bakınız

add a note

User Contributed Notes

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