php iterate object key value code example
Example 1: php loop through object
$person = new StdClass();
$person->name = "Taylor";
$person->age = 31;
foreach ($person as $key => $value) {
echo $key.",".$value."\n";
}
Example 2: php loop through object
// Try edit message
const data = {
message: 'Hello world',
}
$('#msg').html(data.message)
console.log(data)