Home > php教程 > php手册 > body text

PHP可变函数的使用详解

WBOY
Release: 2016-06-06 20:31:43
Original
825 people have browsed it

本篇文章是对PHP中可变函数的使用进行了详细的分析介绍,需要的朋友参考下

PHP 支持可变函数的概念。这意味着如果一个变量名后有圆括号,PHP 将寻找与变量的值同名的函数,并且尝试执行它。可变函数可以用来实现包括回调函数,美国服务器,函数表在内的一些用途。
变量函数不能用于语言结构,例如 echo() ,print() ,unset() ,isset() ,网站空间,empty() ,include() ,香港服务器,require() 以及类似的语句。需要使用自己的包装函数来将这些结构用作变量函数。
Example #1 可变函数示例

复制代码 代码如下:


function foo () {
echo "In foo()
/n" ;
}
function bar ( $arg = '' ) {
echo "In bar(); argument was ' $arg '.
/n" ;
}
// 使用 echo 的包装函数
function echoit ( $string )
{
echo $string ;
}
$func = 'foo' ;
$func (); // This calls foo()
$func = 'bar' ;
$func ( 'test' ); // This calls bar()
$func = 'echoit' ;
$func ( 'test' ); // This calls echoit()
?>
还可以利用可变函数的特性来调用一个对象的方法。


Example #2 可变方法范例

复制代码 代码如下:


class Foo
{
function Variable ()
{
$name = 'Bar' ;
$this -> $name (); // This calls the Bar() method
}
function Bar ()
{
echo "This is Bar" ;
}
}
$foo = new Foo ();
$funcname = "Variable" ;
$foo -> $funcname (); // This calls $foo->Variable()
?>


Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template