La función SplObjectStorage::removeAll() es una función incorporada en PHP que se usa para eliminar todos los objetos contenidos en otro almacenamiento del almacenamiento actual.
Sintaxis:
void SplObjectStorage::removeAll( $obj )
Parámetros: esta función acepta un solo parámetro $obj que especifica el almacenamiento que se eliminará del almacenamiento actual.
Valor devuelto: esta función no devuelve ningún valor.
Los siguientes programas ilustran la función SplObjectStorage::removeAll() en PHP:
Programa 1:
<?php $obj1 = new StdClass; $obj2 = new StdClass; $gfg1 = new SplObjectStorage(); $gfg1[$obj1] = "Geeks"; $gfg2 = new SplObjectStorage(); $gfg2[$obj1] = "GFG"; $gfg2[$obj2] = "GeeksClasses"; // Count and print all existing objects var_dump(count($gfg2)); // Remove all objects of $gfg1 from $gfg2 $gfg2->removeAll($gfg1); // Print result after removeAll var_dump(count($gfg2)); ?>
Producción:
int(2) int(1)
Programa 2:
<?php $obj1 = new StdClass; $obj2 = new StdClass; $gfg1 = new SplObjectStorage(); $gfg1[$obj1] = "Geeks"; $gfg2 = new SplObjectStorage(); $gfg2[$obj1] = "GFG"; $gfg2[$obj2] = "GeeksClasses"; // Count and print all existing objects var_dump(count($gfg2)); // Remove all objects of $gfg1 from $gfg2 $gfg2->removeAll($gfg1); // Print result after removeAll var_dump(count($gfg2)); // Remove all objects itself $gfg2 $gfg2->removeAll($gfg2); // Print result after removeAll var_dump(count($gfg2)); ?>
Producción:
int(2) int(1) int(0)
Referencia: https://www.php.net/manual/en/splobjectstorage.removeall.php