3v4l.org

run code in 300+ PHP versions simultaneously
<?php class test { public $chciDoArray1 = '1'; public $chciDoArray2 = '2'; public $chciDoArray3 = '3'; public $neChciDoArray = 'oops'; public function ohMyHandsWillFallOff() { return [ 'chciDoArray1' => $this->chciDoArray1, 'chciDoArray2' => $this->chciDoArray2, 'chciDoArray3' => $this->chciDoArray3, ]; } public function __toArray() { return [ 'chciDoArray1' => $this->chciDoArray1, 'chciDoArray2' => $this->chciDoArray2, 'chciDoArray3' => $this->chciDoArray3, ]; } } $a = new test(); var_dump((array)$a, json_decode(json_encode($a), true), $a->ohMyHandsWillFallOff());

preferences:
56.73 ms | 402 KiB | 5 Q