Ben bu yüzden tanımlanmış bir sırayla içlerinden döngü olabilir, bir nesnenin özelliklerini sıralamak istiyorum.
Örneğin: 'id', 'title', 'yazar', 'tarih': Ben, aşağıdaki özelliklere sahip bir nesne 'kitap' var.
Şimdi ben böyle bu özellikleri döngü istiyorum:
foreach($book as $prop=>$val)
//do something
şimdi döngü düzeni 'title', ardından 'yazar', 'tarih' ve 'id' olmak zorundadır
How would one do this? (I can't change the order of the properties in the class of the object because there arent any properties defined there, I get the object from the database with 'MyActiveRecord')