建構子是PHP5 OOP(物件導向程式設計)的概念。構造函數與我們在程式中聲明的類別相關聯。建構函數是在類別的物件被實例化時自動呼叫的,因此建構函式的定義是這樣的:「建構子是一種特殊的方法,當類別的物件被實例化時自動呼叫。」在本主題中,我們將學習PHP 中的建構子。
廣告 該類別中的熱門課程 PHP 開發人員 - 專業化 | 8 門課程系列 | 3次模擬測驗開始您的免費軟體開發課程
網頁開發、程式語言、軟體測試及其他
文法
<?php Class Classname { //constructor function __construct() { //statements } } ?>
在上面的程式碼中,建構函式以 __ 雙下劃線開頭,後面接著關鍵字 constructor。沒有 __construct() 的建構子或如果類別的名稱發生更改,則定義的方法只是一個方法而不是建構子。因此,根據定義的語法在類別中定義建構函數非常重要。
以下是一些類型的建構函數,其輸出如下
為了澄清預定義建構函數,讓我們來看看下面給出的範例
預定義建構子範例
代碼:
<?php class Person { function CanSpeak() { echo " Not a constructor method " . '<br>'; } function __construct() { echo " In the constructor method " . '<br>'; } } //Object of class calling the constructor internally $p = new Person(); // Object of class calling the normal method $p->CanSpeak(); ?>
輸出:
在上面的例子中
我們有一個類別 Person,它有兩個方法,其中一個 Person CanSpeak() 方法和建構函式方法 __construct()。接下來,我們將該類別實例化為物件 $p。使用 $p 我們呼叫了普通方法。一旦創建了對象,就會調用構造函數方法並執行方法內的語句,類似地,使用相同的對象$p 和內部語句調用CanSpeak() 方法,該方法是普通方法而不是構造函數方法該方法被執行。另外,由於上面定義的建構函式沒有任何參數,我們稱之為零參數建構函式或預定義建構函式。
建構子可以有或沒有參數。帶參數的建構函數稱為參數化建構函數,不帶參數的建構函數稱為零參數建構函數。讓我們來看一個例子。
參數化建構子範例
代碼:
class Person { private $first; private $email; private $mobile; public function __construct($name, $email, $mobile) { echo "Initialising the object...<br/>"; $this->name = $name; $this->email = $email; $this->mobile = $mobile; } public function showProfile() { echo "My name is: " . $this->name. " " . $this->email. " " . $this->mobile; } } $john = new Person("John","[email protected]", "9187986786"); $john->showProfile();
輸出:
讓我們來看看基底類別建構子和衍生類,衍生類別使用 extends 關鍵字擴充基底類別,而衍生類別有自己的建構函式要執行,並且還要執行父建構子。到目前為止,我們只了解了類別中聲明的建構子。這裡讓我們為構造函數補充一些知識。在下面的例子中,基底類別Person有一個建構函數,現在這個建構函數被衍生類別或子類別使用parent關鍵字調用,因此可以存取基底類別Person的建構子。
首先,呼叫Person 建構函數,然後呼叫Customer 建構函數,在內部再次呼叫Person 建構函數,然後呼叫自己的客戶建構函數,最後一個呼叫擴展Person 類別的Employee 類,從而再次呼叫Person 建構函數。
代碼:
class Person { function __construct() { echo "In Person constructor"."<br>"; } } class Customer extends Person { function __construct() { parent::__construct(); echo "In Customer constructor"."<br>"; } } class Employee extends Person { // inherits Person’s constructor } // In Person constructor $p = new Person(); // In Person constructor // In Customer constructor $c = new Customer(); // In Employee constructor $e = new Employee();
輸出:
在下面的範例中,我們展示了 set 方法和 get 方法的工作原理。使用 OOP 中的封裝概念。最初,程式是用建構子、set_name 方法和 get_name 方法宣告的。請注意,建構函數是一個參數化建構函數,在實例化類別時肯定會呼叫它,因此第一個輸出是John Doe 接下來創建了該類別的對象,並呼叫了set_name 和get_name 方法,將輸出列印為Alice。
代碼:
<?php class Person { public $name; function __construct($name) { echo $this->name = $name; } function set_name($name) { $this->name = $name; } function get_name() { echo $this->name; } } // In Person constructor $p = new Person('John Doe'); echo "\n"; $p->set_name('Alice'); $p->get_name(); ?>
輸出:
PHP 中有三個存取說明符
公共:聲明為公共的類別的成員可以在任何地方存取。
Protected: Members of the class declared as protected are accessible only within the base class and the derived class which extends the base class.
Private: Members of the class declared as private are accessible with the class that defines it.
Also, the variables declared are called data members or properties and the functions declared are called as data methods. In the below example we have Base Class declared as Person which has the following properties along with the access specifiers public name, protected email and private mobile. Now the class is instantiated with an object $p and these three properties which are accessed from the object. which outputs are an error, why because, the protected property says that protected are accessible only within the base class and the derived class which extends the base class?
Code:
<?php class Person { public $name=; protected $email; private $mobile; function __construct() { print "In Person constructor"; } } // In Person constructor $p = new Person(); echo $p->name; echo $p->email; echo $p->mobile; ?>
Output:
Hope this article finds you what you have been searching for. The article has different examples for you to learn. The more you put the examples in practice the easier it will become to grasp.
以上是PHP 中的建構函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!