首页 > 代码库 > php call_user_func

php call_user_func

<?php
function barber($type)
{
    echo "You wanted a $type haircut, no problem\n";
}
call_user_func(‘barber‘, "mushroom");
call_user_func(‘barber‘, "shave");
?>

以上例程会输出:

You wanted a mushroom haircut, no problemYou wanted a shave haircut, no problem

php call_user_func