how to loop through properties of a class php code example
Example 1: php loop through object
foreach ($obj as $key => $value) {
echo "$key => $value\n";
}
Example 2: php loop through obect
PHP By Wandering Weevil on Mar 8 2020
$person = new StdClass();
$person->name = "Ngbokoli";
$person->age = 31;
$person->nationnality = "Congolese";
$person->profession = "Student";
foreach ($person as $key => $value) {
echo $key." ".$value."\n";
}