是否可以獲得在不使用反射類的情況下在類中定義的常量?如何在不使用反射的情況下獲得php類中的常量
我想是這樣的:
<?php
class Test {
const URL = 'https://www.example.com';
public function get($constant)
{
return $constant;
}
}
$test = new Test();
$test->get('URL');
我所要的輸出是URL
的價值,這是「https://www.example.com」。但是,現在它只是返回實際的單詞'URL'。
與Test :: URL一樣簡單,如[PHP文檔](http://www.php.net/manual /en/language.oop5.constants.php) –