|
SimpleXMLElement::getChildren現在の要素の子要素を返す 説明
public SimpleXMLElementnull SimpleXMLElement::getChildren()
警告
PHP 8.0 より前のバージョンでは、 SimpleXMLElement::getChildren は サブクラスの SimpleXMLIterator でのみ宣言されていました。 このメソッドは、現在の SimpleXMLElement 要素の子要素を含む SimpleXMLElement オブジェクトを返します。 パラメータこの関数にはパラメータはありません。 戻り値現在の要素の子要素を含む SimpleXMLElement オブジェクトを返します。 例
例1 現在の要素の子要素を返す
上の例の出力は以下となります。 The title is 'PHP Basics' from the class SimpleXMLElement The author is 'Jim Smith' from the class SimpleXMLElement |