php call_user_func调用带参数的类方法
php call_user_func调用带参数的类方法 [代码片段(30行)]
<?php class Person { private $name; private $age; private $id; function __construct( $name, $age ) { $this->name = $name; $this->age = $age; } function setId( $id ) { $this->id = $id; } function getId(){ echo $this->id; } function __clone() { $this->id = 0; } } $p = new Person('A',10); call_user_func( array( $p, 'setId' ), 20 ); $p->getId(); ?>
- 上一篇:php class 构造函数
- 下一篇:php检查字符串是否是UTF8编码
精彩图集
精彩文章