SimpleXMLIterator::valid

(PHP 5, PHP 7, PHP 8)

SimpleXMLIterator::validVérifie si une ressource SimpleXML contient d'autres entrées

Description

public SimpleXMLIterator::valid(): bool

Cette méthode vérifie si l'élément courant est valide, après un appel à SimpleXMLIterator::rewind() ou SimpleXMLIterator::next().

Liste de paramètres

Cette fonction ne contient aucun paramètre.

Valeurs de retour

Retourne true si l'élément courant est valide, false sinon.

Exemples

Exemple #1 Vérifie si un élément est valide

<?php
$xmlIterator 
= new SimpleXMLIterator('<books><book>SQL Basics</book></books>');

$xmlIterator->rewind(); // Retour au premier élément
echo var_dump($xmlIterator->valid()); // bool(true)

$xmlIterator->next(); // advance to the next element
echo var_dump($xmlIterator->valid()); // bool(false) car il y a un seul élément
?>

add a note add a note

User Contributed Notes

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