function test() {$a = 1;$b = 2;testa( 'testb', $a );echo $a, $b;}
function testa() {$p = func_get_args();$fun = $p[ 0 ];$p1 = & $p[ 1 ]; $fun( $p1 );}
function testb( &$a, &$b ) {$a = 'a';$b = 'b';}
test();
qq_笑_17
相关分类