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
随时随地看视频慕课网APP