PHP使用字符串名称调用类的方法:1、使用【call_user_func】方法,代码为【call_user_func(array($game, 'Play'), 1)】;2、使用Play方法,代码为【$game->{'Play'}(2)】。
本教程操作环境:windows7系统、PHP5.6版,DELL G3电脑,该方法适用于所有品牌电脑。
PHP使用字符串名称调用类的方法:
可以使用call_user_func
方法和Play方法
具体代码如下显示:
<?php class Game { function Play($id) { echo "Playing game $id\n"; } } $game = new Game(); //方法1,使用call_user_func call_user_func(array($game, 'Play'), 1); //方法2 $game->{'Play'}(2); //或者 $method = 'Play'; $game->$method(3);
相关视频推荐:PHP编程从入门到精通
Atas ialah kandungan terperinci PHP使用字符串名称调用类的方法是什么. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!