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.
15 lines
312 B
15 lines
312 B
<?php
|
|
/**
|
|
* 可变函数,就是一个变量等于一个函数的名称,这个变量可以通过,变量()的形式调用函数
|
|
*/
|
|
|
|
//1.定义一个函数
|
|
function func_a(){
|
|
echo "hello";
|
|
}
|
|
|
|
//2.定义一个变量
|
|
$fn='func_a';
|
|
|
|
//3.得到可变函数
|
|
$fn();
|