(PHP 8)
SimpleXMLElement::valid — Check whether the current element is valid
Prior to PHP 8.0, SimpleXMLElement::valid() was only declared on the subclass SimpleXMLIterator.
This method checks if the current element is valid after calls to SimpleXMLElement::rewind() or SimpleXMLElement::next().
This function has no parameters.
Example #1 Check whether the current element is valid
<?php
$xmlElement = new SimpleXMLElement('<books><book>SQL Basics</book></books>');
$xmlElement->rewind(); / rewind to the first element
echo var_dump($xmlElement->valid()); / bool(true)
$xmlElement->next(); / advance to the next element
echo var_dump($xmlElement->valid()); / bool(false) because there is only one element
?>
Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!
Check out: eBank.nz (Art Generator) |
Netwrck.com (AI Tools) |
Text-Generator.io (AI API) |
BitBank.nz (Crypto AI) |
ReadingTime (Kids Reading) |
RewordGame |
BigMultiplayerChess |
WebFiddle |
How.nz |
Helix AI Assistant