|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-01-22 13:31 UTC] helly@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 09 04:00:01 2025 UTC |
Description: ------------ example / title pretty much covers it :) Reproduce code: --------------- php -r 'class a { var $a=array('a'=>1); } $c = new ReflectionClass("a"); print_r($c->getdefaultProperties());' Expected result: ---------------- Array ( [a] => Array ( [a] => 1 ) ) Actual result: -------------- Array ( [a] => Segmentation fault