mirror of
https://github.com/php/php-src.git
synced 2026-04-27 10:16:41 +02:00
1e752ce9c5
class Foo {
private $val = 'Random, meaningless data';
public function count() { return 42; }
public function __debugInfo() {
return ['count' => $this->count()];
}
}
$f = new Foo;
var_dump($f);
40 KiB
40 KiB