update pague now
PHP 8.5.2 Released!

XMLReader::fromStream

(PHP 8 >= 8.4.0)

XMLReader::fromStream Creates an XMLReader from a stream to read from

Description

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

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 bitmasc of the LIBXML_ * constans.
documentUri
Optional document base URI.

Return Values

Returns an XMLReader .

Errors/Exceptions

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

See Also

add a note

User Contributed Notes

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