在 PHP 中獲取類名

Habdul Hazeez 2023年1月30日
  1. 在 PHP 中使用類名解析來獲取類名
  2. 在 PHP 中使用 __CLASS__ 常量獲取類名
  3. 在 PHP 中使用 get_class() 函式獲取類名
  4. PHP 中使用反射類獲取類名
  5. 在 PHP 中在物件上使用 ::class 獲取類名
在 PHP 中獲取類名

本教程將討論如何通過類名解析、PHP __CLASS__ 常量和 get_class() 方法獲取 PHP 類名。你將瞭解其在類內外的類名解析中的用法。

在 PHP 中使用類名解析來獲取類名

當你的程式碼中有名稱空間時,你可以通過類名解析獲得類名。結果是一個完全合格的類名 (FQCN)。

此功能在 PHP 中以 ClassName::class 的形式提供。當你的 PHP 中有名稱空間時,它很有用。

在下面的程式碼示例中,通過 ClassName::class 的類名解析將返回關聯類的類名:

<?php
    namespace YourNameSpace;

    // Define a class
    class HelloClassName {}

    // Get the class name from ::class
    echo HelloClassName::class;
?>

輸出:

YourNameSpace\HelloClassName

如果你想在類方法中使用這個特性,你可以通過靜態方法獲取類名。你將把它寫成 static::class

下一個程式碼示例展示瞭如何在類方法中獲取類名。

<?php
    namespace YourNameSpace;

    // Define the class name
    class HelloClassName {
        /**
         * Define a function that returns
         * the class name via static::class
         */
        public function getClassName() {
            return static::class;
        }
    }

    // Create a new object
    $hello_class_name = new HelloClassName();

    // Get the class name
    echo $hello_class_name->getClassName();
?>

輸出:

YourNameSpace\HelloClassName

在 PHP 中使用 __CLASS__ 常量獲取類名

__CLASS__ 常量是 PHP 預定義常量的一部分。你可以在類中使用它來獲取類名。

以下程式碼將通過 __CLASS__ 常量獲取類名。

<?php
    // Define the class
    class Hello {
    	// This function will return the
    	// class name
        function HelloName (){
            return __CLASS__;
        }
    }

	// Create a new object
    $hello_object= new Hello();

	// Get the class name
    echo $hello_object->HelloName();
?>

輸出:

Hello

在 PHP 中使用 get_class() 函式獲取類名

PHP 提供了一個 get_class() 函式。該函式將返回類名。你可以在過程和麵向物件的程式設計中使用它。首先,我們來看看程式風格。

下一個程式碼塊定義了一個具有單個函式的類。當引數是 this 關鍵字時,類中的函式將返回類名。

要獲取類名,請從類中建立一個物件;然後,將物件的名稱傳遞給 get_class()

<?php
    // Define a class
    class Hello {
        function class_name() {
            echo "The class name is: ", get_class($this);
        }
    }

    // Create a new object
    $new_hello_object = new Hello();

    // Get the class name
    $new_hello_object->class_name();

    // Also, you can get the class name
    // via an external call
    // echo get_class($new_hello_object);
?>

輸出:

The class name is: Hello

首先,對於 OOP 風格,你可以從靜態類返回 get_class() 函式。

<?php
    // Define a class
    class Hello {
        public static function class_name() {
            return get_class();
        }
    }

    // Get the class name
    $class_name = Hello::class_name();

    echo $class_name;
?>	

輸出:

Hello

此方法有其侷限性,因為當你擴充套件類時,擴充套件類將返回父類的名稱,而不是擴充套件類。為了解決這個問題,你可以使用 get_call_class()

get_call class() 函式依賴於 Late Static Binding。使用此函式,PHP 將返回撥用類的名稱。它解決了擴充套件類返回其父類的名稱而不是自己的名稱的情況。

<?php

// Define a class
class Hello {

	// A static function that returns the
	// name of the class that calls it
	public static function called_class_name() {
		return get_called_class();
	}

	// This function will return the
	// defining class name
	public static function get_defining_class() {
		return get_class();
	}
}

class ExtendHello extends Hello {

}

$hello_class_name = Hello::called_class_name();
$extended_class_name = ExtendHello::called_class_name();
$extend_hello_parent_class = ExtendHello::get_defining_class();

echo "Hello class name: " . $hello_class_name . "\n";
echo "Extended Hello class name: " . $extended_class_name . "\n";
echo "Extended Hello parent class name: "  . $extend_hello_parent_class . "\n";
?>

輸出:

Hello class name: Hello
Extended Hello class name: ExtendHello
Extended Hello parent class name: Hello

PHP 中使用反射類獲取類名

反射類是在 PHP 中獲取類名的簡潔方法。你建立一個類;在這個類中,建立一個返回新反射類的函式。

Reflection 類的引數應該設定為 $this。之後,你可以通過反射類可用的 getShortName() 方法獲取類名。

<?php
    // Define a class
    class Hello {
        // A function that returns the class
        // name via reflection
        public function HelloClassName() {
            return (new \ReflectionClass($this))->getShortName();
        }
    }

    // Create a new class name
    $hello_class_name = new Hello();

    // Get the class name
    echo $hello_class_name->HelloClassName();
?>

輸出:

Hello

在 PHP 中在物件上使用 ::class 獲取類名

::class 功能適用於 PHP 8 之前的類。從 PHP 開始,當你從類建立物件時,你可以使用 ::class 從建立的物件中獲取類名。

你將在以下程式碼塊中找到一個示例。

<?php
    namespace YourNameSpace;

    // define the class
    class HelloClassName {

    }

    // Create a new object
    $hello_class_name = new HelloClassName();

    // Get the class name from the object
    // via ::class
    echo $hello_class_name::class;
?>

輸出:

YourNameSpace\HelloClassName
作者: Habdul Hazeez
Habdul Hazeez avatar Habdul Hazeez avatar

Habdul Hazeez is a technical writer with amazing research skills. He can connect the dots, and make sense of data that are scattered across different media.

LinkedIn

相關文章 - PHP Class