XMLReader::fromStream

Creates an XMLReader from a stream to read from

Description

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

Creates an XMLReader from a stream to read from.

Parameters

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.

Return Values

Returns an XMLReader.

Errors/Exceptions

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

See Also

  • XMLReader::fromString
  • XMLReader::fromUri