PHP Conference Nagoya 2025

XMLReader::fromString

(PHP 8 >= 8.4.0)

XMLReader::fromStringCreates an XMLReader from an XML string

説明

public static XMLReader::fromString(string $source, ?string $encoding = null, int $flags = 0): static

Creates an XMLReader from an XML string.

パラメータ

source

パースされる XML を含む文字列。

encoding

ドキュメントのエンコーディングあるいは null

flags

LIBXML_* 定数のビットマスク。

戻り値

Returns an XMLReader.

エラー / 例外

  • Passing an invalid encoding will throw a ValueError.

参考

add a note

User Contributed Notes

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