各位大大:
刚才一时不确定 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
*/