debugInfo

suggest change
This method is called by var_dump() when dumping an object to get the properties that should be shown. If the method isn’t defined on an object, then all public, protected and private properties will be shown. — PHP Manual
class DeepThought {
    public function __debugInfo() {
        return [42];
    }
}
var_dump(new DeepThought());

The above example will output:

class DeepThought#1 (0) {
}
var_dump(new DeepThought());

The above example will output:

class DeepThought#1 (1) {
  public ${0} =>
  int(42)
}

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


Magic methods:
* clone
* invoke
* debugInfo

Table Of Contents
2 Arrays
4 Types
10 Cookies
14 JSON
15 SOAP
17 cURL
19 XML
21 Traits
25 Magic methods
35 UTF-8
36 URLs
38 PHPDoc
41 Loops
44 Closur
72 YAML
77 Cache
78 Streams
81 PDO
82 SQLite3
83 Sockets
87 MongoDB
93 IMAP
94 Redis
95 Imagick
102 APCu
108 PSR