PHP Conference Nagoya 2025

XMLReader::fromStream

(PHP 8 >= 8.4.0)

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

Описание

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.

Список параметров

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.

Возвращаемые значения

Returns an XMLReader.

Ошибки

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

Смотрите также

Добавить

Примечания пользователей

Пользователи ещё не добавляли примечания для страницы
To Top