博客列表 >call_user_func用法(涉及参数的变量替换以及类和命名空间和匿名函数)

call_user_func用法(涉及参数的变量替换以及类和命名空间和匿名函数)

福哥的博客
福哥的博客原创
2017年07月25日 17:51:511537浏览

1. 指定函数的参数调用

<?php
function barber($type){
    echo "You wanted a $type haircut,no problem!<br />";
}
call_user_func('barber','mushroom');

call_user_func('barber','shave');
?>

2.变量作为参数的函数调用

<?php
error_reporting(E_ALL);

function increment (&$var){
    $var++;
}
$a = 0;
call_user_func('increment',$a);
echo $a."";

call_user_func_array('increment',array(&$a));//php5.3以上
echo $a."";
//0 1
?>

3. call_user_func() 用于命名空间

<?php
//call_user_func() using namespace name
namespace Foobar;

class Foo{
    static public function test(){
        print("Hello world!");
    }
}
call_user_func(__NAMESPACE__.'\\'.'Foo::test');
call_user_func(array(__NAMESPACE__.'\\'.'Foo','test'));
//输出Hello world!Hello world!
?>

4. call_user_func() 调用类的方法

<?php
//Using a class method with call_user_func()
class myclass{
    static function say_hello(){
        echo "Hello!";
    }
}
$classname="myclass";

call_user_func(array($classname,'say_hello'));
call_user_func($classname.'::say_hello');

$myobject = new myclass();
call_user_func(array($myobject,'say_hello'));
//输出Hello! Hello! Hello!
?>

5. call_user_func() 调用匿名函数并指定参数方法

<?php
call_user_func(function($arg){print "[$arg]";},'test');
//输出[test]
?>


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议