php 可以动态的new一个变量类名
Posted 左正
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 可以动态的new一个变量类名相关的知识,希望对你有一定的参考价值。
<?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一个变量类名的主要内容,如果未能解决你的问题,请参考以下文章