PHP current()関数
例
最初の要素に巻き戻し、 current()関数でそれを返します。
<?php
$note=<<<XML
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Do not forget me this weekend!</body>
</note>
XML;
$xml = new SimpleXMLIterator($note);
// rewind to the first element
$xml->rewind();
// return current element
var_dump($xml->current());
?>
定義と使用法
current()関数は、現在の要素を返します。
構文
<div>SimpleXMLIterator::current()</div>
Technical Details
:::table {.techis-styled-table-all}
PHP バージョン:
:::table
プログラミング学習を加速させる
プログラミングをプロの講師に教えてもらいませんか。