|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-02-12 18:40 UTC] sniper@php.net
[2003-02-12 18:45 UTC] joergland at debian dot org
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 14:00:01 2025 UTC |
sample code: $foo = array('a'); function r($a, $b) { return $a . $b; } $str = array_reduce($foo, 'r'); $str is empty after execution, should be 'a'