File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / Zend / tests / bug52940.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue May 29 12:34:36 2012 UTC (12 years, 10 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, HEAD
php 5.4.3+patches

    1: --TEST--
    2: Bug #52940 (call_user_func_array still allows call-time pass-by-reference)
    3: --FILE--
    4: <?php
    5: function foo($a) {
    6: 	$a++;
    7: 	var_dump($a);	
    8: }
    9: function bar(&$a) {
   10:         $a++;
   11:         var_dump($a);
   12: }
   13: $a = 1;
   14: call_user_func_array("foo", array(&$a));
   15: var_dump($a);
   16: call_user_func_array("bar", array(&$a));
   17: var_dump($a);
   18: ?>
   19: --EXPECT--
   20: int(2)
   21: int(1)
   22: int(2)
   23: int(2)

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>