Created
January 24, 2018 15:30
-
-
Save praswicaksono/7f3c46cb78569a4d1f6f0acf62fff34d to your computer and use it in GitHub Desktop.
Iteration Object
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class Pegawai | |
| { | |
| public $nama = 'Budi'; | |
| public $umur = 29; | |
| } | |
| foreach ((new Pegawai()) as $key => $value) { | |
| echo "{$key} : {$value}" . PHP_EOL; | |
| } | |
| // output | |
| // ====== | |
| // nama : Budi | |
| // umur : 29 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment