PHP類常量的呼叫及構造方法

2021-09-27 11:11:58 字數 804 閱讀 6783

<?php 

//定義乙個學生類

class student

}//用靜態化方式,直接訪問類常量,不需要建立物件

$str = "" ;

$str .= "主機名:".student::db_host ;

$str .= "

使用者名稱:".student::db_user ;

$str .= "

使用者名稱:".student::db_pass ;

echo $str ;

//建立學生類的物件

//定義乙個學生類

class student

//公共的自我展示的方法

public function showinfo()" ;

$str .= "

性別:" ;

$str .= "

年齡:" ;

echo $str ;

}}//建立學生類的物件

$obj = new student("張三","男",26) ;

php不呼叫父類構造 php呼叫父類構造方法是什麼

php呼叫父類構造方法 首先父類先建構函式,為 public function construct 然後使用 parent construct 呼叫父類建構函式即可。php呼叫父類構造方法 一 使用函式 parent construct 呼叫父類建構函式 如下 class myclass 父類 pu...

php類常量定製及使用方法

例項 如下 to change this template,choose tools templates and open the template in the editor.description of classconstsample author liujl class classconst...

php類常量定製及使用方法

例項 如下 to change this template,choose tools templates and open the template in the editor.description of classconstsample author liujl class classconst...