function otest1 ($a)
{
echo( '一個參數' );
}
function otest2 ( $a, $b)
{
echo( '二個參數' );
}
function otest3 ( $a ,$b,$c)
{
echo( '三個啦' );
}
function otest ()
{
$args = func_get_args();
$num = func_num_args();
call_user_func_array( 'otest'.$num, $args );
}
otest(1,2);
沒有留言:
張貼留言