You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
218 B

2 years ago
  1. <?php
  2. //这个一个普通的函数
  3. function add($m,$n)
  4. {
  5. return $m+$n;
  6. }
  7. //call_user_func — 把第一个参数作为回调函数调用
  8. $ret=call_user_func('add',10,5);
  9. echo $ret;