码迷,mamicode.com
首页 > Web开发 > 详细

php 可以动态的new一个变量类名

时间:2017-05-25 15:43:11      阅读:286      评论:0      收藏:0      [点我收藏+]

标签:text   nbsp   http   blank   content   replace   hello   utf-8   char   

<?PHP
header("content-type:text/html; charset=utf-8");
//echo ucfirst(‘a b‘);

class Student{
 private $xh;
 private $name;
 
 function __construct($id,$name){
  $this->id = $id;
  $this->name = $name;
 }
 
 function hello(){
  echo ‘我的学号是:‘.$this->id.‘我的名字是:‘.$this->name;
 }
}

$className = ‘Student‘;
$stu = new $className(‘123456‘,‘谭斌‘);
$stu->hello();
?>

 

页面打印结果如下:

我的学号是:123456我的名字是:谭斌

php 可以动态的new一个变量类名

标签:text   nbsp   http   blank   content   replace   hello   utf-8   char   

原文地址:http://www.cnblogs.com/soundcode/p/6903829.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!