Skip to content

Instantly share code, notes, and snippets.

@praswicaksono
Created January 24, 2018 15:30
Show Gist options
  • Select an option

  • Save praswicaksono/7f3c46cb78569a4d1f6f0acf62fff34d to your computer and use it in GitHub Desktop.

Select an option

Save praswicaksono/7f3c46cb78569a4d1f6f0acf62fff34d to your computer and use it in GitHub Desktop.
Iteration Object
<?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