您的位置:首页 > 编程语言 > PHP开发

PHP 关于回调的用法

2015-12-03 10:54 501 查看
class aClass {

public static function directWrite($message) {
echo 'this is a static function from aClass !';
echo "\n";
echo $message;
echo "\n";
}

function write($message) {
echo 'this is a normal function from aClass !';
echo "\n";
echo $message;
echo "\n";
}

}

function test($echo)
{
echo 'this is a single global function !';
echo $echo, "\n";
}

$params = array("hello world ! all of you ");
$param='hello world ! just you ';

$method='test';

echo "\n ";
call_user_func_array($method, $params);

echo "\n ";
$method($param);

echo "\n ";
call_user_func_array(array('aClass', "directWrite"), $params);

$obj = new aClass();
$method='write';

echo "\n ";
call_user_func_array(array($obj, $method), $params);

echo "\n ";
$obj->{$method}($param);


一切不解释,直接上代码,不明白的概念自己查资料
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: