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我的名字是:譚斌


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM