php only loop through properties of the self class code example
Example: php loop through class properties
foreach ($obj as $key => $value) {
echo "$key => $value\n";
}
foreach ($obj as $key => $value) {
echo "$key => $value\n";
}