PHP call_user_func 대 호출 함수
나는 이것에 대한 매우 쉬운 설명이 있다고 확신합니다. 이것의 차이점은 무엇입니까? function barber($type){ echo "You wanted a $type haircut, no problem\n"; } call_user_func('barber', "mushroom"); call_user_func('barber', "shave"); ... 그리고 이것 (그리고 이점은 무엇입니까?) : function barber($type){ echo "You wanted a $type haircut, no problem\n"; } barber('mushroom'); barber('shave');