loop through object and create variables php 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";
}