2016-08-24
变量函数
<?php
header('content-type=:"text/html" ;charset=:"UTF-8"');
//变量函数
function show_ch($name)
{
echo '我的名字叫'.$name;
}
function show_eng($name)
{
echo 'my name is'.$name;
}
function show($type,$name)
{
$a='show_'.$type;//将函数的句式储存在变量中。
$a($name);
}
show('ch','李白');
show('eng','libai');
?>
匿名函数
<?php
header('Content-type="text/html" charset="UTF-8"');
//匿名函数及调用。。
(function ($temp)
{
echo $temp;
})(2);
?>