[2009年12月07日 01:40 UTC] tstarling at wikimedia dot org
Description: ------------ This is a regression in the PHP 5.3.1 release. When you call a __call() function with a reference parameter, it is silently converted to a value, by the time it reaches the second argument to __call(). This breaks MediaWiki and has no obvious workaround. Reproduce code: --------------- function foo( &$x ) {} class Proxy { function __call( $name, $args ) { debug_zval_dump( $args ); call_user_func_array( 'foo', $args ); } } $arg = 1; $args = array( &$arg ); $proxy = new Proxy; call_user_func_array( array( &$proxy, 'bar' ), $args ); Expected result: ---------------- PHP 5.3.0 produces: array(1) refcount(4){ [0]=> &long(1) refcount(5) } Actual result: -------------- array(1) refcount(4){ [0]=> long(1) refcount(3) } Warning: Parameter 1 to foo() expected to be a reference, value given in /home/tstarling/src/php/stuff/test-reference-call.php on line 8 PatchesMediaWiki (last revision 2010年09月10日 14:51 UTC by produzione at solarisenergy dot it)chihanglow (last revision 2010年07月09日 00:10 UTC by chihanglow at gmail dot com) Php_Patch (last revision 2010年05月18日 08:00 UTC by saschasteffens at gmx dot net) sedwdfqf (last revision 2010年03月31日 16:40 UTC by www dot mhobkirk at shaw dot ca) Pull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009年12月08日 04:46 UTC] tstarling at wikimedia dot org
[2009年12月17日 19:15 UTC] stas@php.net
[2009年12月18日 19:12 UTC] svn@php.net
[2009年12月18日 19:13 UTC] stas@php.net
[2009年12月18日 19:20 UTC] svn@php.net
[2010年03月21日 21:57 UTC] spam dot here at verizon dot net
[2010年03月21日 22:01 UTC] tstarling at wikimedia dot org
[2010年04月07日 05:59 UTC] clark4220 at yahoo dot com
[2010年04月12日 22:53 UTC] tog7yt at yahoo dot com
[2010年06月06日 18:12 UTC] PandoraBox2007 at gmail dot com
[2010年06月06日 18:55 UTC] PandoraBox2007 at gmail dot com
[2010年06月06日 19:04 UTC] pajoye@php.net
-Assigned To:
+Assigned To: pajoye
[2010年06月06日 19:04 UTC] pajoye@php.net
[2010年07月23日 01:09 UTC] heis dot turtlemad at gmail dot com
[2010年08月10日 09:14 UTC] parktrip at gmail dot com
[2010年09月04日 01:16 UTC] david at tuxteam dot com
[2010年09月15日 01:16 UTC] jeremy at tuxmachine dot com
[2010年09月15日 02:23 UTC] tstarling at wikimedia dot org
[2010年09月19日 10:54 UTC] heis dot turtlemad at gmail dot com
[2010年09月20日 05:14 UTC] tstarling at wikimedia dot org
[2010年09月21日 11:49 UTC] hugoniks at hotmail dot com
[2010年10月11日 04:18 UTC] master33rd at yahoo dot com
[2010年10月22日 07:58 UTC] john dot GTD at yahoo dot com
[2013年05月08日 14:55 UTC] dessander at gmail dot com
[2013年06月12日 11:54 UTC] merzikain at yahoo dot com
[2014年03月10日 05:05 UTC] bgardner at noggin dot com dot au
[2014年03月10日 05:56 UTC] tstarling@php.net
|