各位大大:
剛才一時不確定 PHP Class 裡的關鍵字 self 是寫大寫還是小寫
測試了一下發現大小寫都是可以的,甚至寫 SElf 這種大小寫混雜的寫法也行
想統計一下大家習慣都是寫大寫(SELF) 還是寫小寫(self) 的呢?
===============================================================
以下是測試的 Code
<?php
Class TestClass
{
const MSG = "Hello";
public static function test()
{
echo "self::MSG = " . self::MSG. "<br>";
echo "SELF::MSG = " . SELF::MSG. "<br>";
echo "SElf::MSG = " . SElf::MSG. "<br>";
}
}
TestClass::test();
/**
* 執行結果
* self::MSG = Hello
* SELF::MSG = Hello
* SElf::MSG = Hello
*/