|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-07-13 13:34 UTC] colder@php.net
[2009-07-13 13:50 UTC] ninzya at inbox dot lv
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 04 00:00:02 2025 UTC |
Description: ------------ See reproduce code. Reproduce code: --------------- <?php $arr =array(); $arr[function(){return 5;}] ='Stepanov'; var_dump( $arr); ?> Expected result: ---------------- array(1) { [5]=> string(8) "Stepanov" } Actual result: -------------- Warning: Illegal offset type in D:\...\index.php on line 5 array(0) { }