1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 17:22:15 +01:00
Files
archived-php-src/ext/standard
Andrey Hristov aafb2b1581 var_dump() now shows private and protected member variables.
Not BC is that since now the public variables are explicitly shown as public
Example :

class a{ protected $a=1; private $b=2;var $c=3;} $a=new a(); var_dump($a);

object(a)#1 (3) {
  ["a:protected"]=>
  int(1)
  ["b:private"]=>
  int(2)
  ["c:public"]=>
  int(3)
}
2004-05-20 17:46:20 +00:00
..
2004-05-19 08:56:50 +00:00
2004-01-08 08:18:22 +00:00
2004-05-10 07:23:38 +00:00
2004-01-08 08:18:22 +00:00
2000-11-20 10:33:33 +00:00
2004-01-08 08:18:22 +00:00
2004-02-12 19:05:41 +00:00
2004-01-08 08:18:22 +00:00
2004-05-18 16:13:57 +00:00
2004-03-19 22:21:53 +00:00
2004-01-08 08:18:22 +00:00
2004-01-08 08:18:22 +00:00
2004-01-08 08:18:22 +00:00
2004-04-23 03:37:20 +00:00
2004-01-08 08:18:22 +00:00
2004-05-02 13:23:30 +00:00
2004-03-06 17:31:51 +00:00
2004-01-08 08:18:22 +00:00
2004-01-08 08:18:22 +00:00
2004-01-08 08:18:22 +00:00
2004-02-24 21:49:28 +00:00
2004-04-08 19:21:05 +00:00
2004-02-12 19:05:41 +00:00
2004-01-08 08:18:22 +00:00
2004-01-08 08:18:22 +00:00
2004-01-08 08:18:22 +00:00
2004-02-25 20:16:27 +00:00
2003-04-16 21:10:29 +00:00
2004-02-25 20:16:27 +00:00
2004-01-08 08:18:22 +00:00
2004-01-08 08:18:22 +00:00
2004-05-12 10:19:06 +00:00
2004-03-27 01:27:53 +00:00