一般的语言函数必须定义了在运行,而php支持在运行时动态创建函数,下面是一个简单的范例,在运动时根据不同的条件创建函数$a
-
if (count($_POST) > 0) {
- $prepped = create_function('$a', 'return trim($_POST[$a]);');
- }
- elseif (count($_GET) > 0) {
- $prepped = create_function('$a', 'return strtoupper($_GET[$a]);');
- }
- else {
- $prepped = create_function('$a', 'return false;');
- }echo $prepped('file');
- ?>
复制代码
|