1.自定義常量
* 必須用函數define()定義
* 定義完後其值不能再改變了
* 使用時直接用常量名,不能像變量一樣在前面加$s
例如:define("PI",3.14);定義一個常量
$area = PI*R*R; 計算圓的面積
define("URL","http://www.jb51.net");
echo "我的網址是:".URL;
2 系統常量:
FILE :php程序文件名
LINE :PHP程序文件行數
PHP_VERSION:當前解析器的版本號
PHP_OS:執行當前PHP版本的操作系統名稱
可以直接拿來使用,例如要查看執行當前PHP版本的操作系統名稱,就可以寫成 echo PHP_OS
php定義和使用一個類常量
php類常量
我們可以在類中定義常量。常量的值將始終保持不變。在定義和使用常量的時候不需要使用$符號。
常量的值必須是一個定值,不能是變量,類屬性或其它操作(如函數調用)的結果。
Its also possible for interfaces to have constants. Look at the interface documentation for examples. 接口(interface)中也可以定義常量。請查看接口的文檔獲得更多示例。
PHP5.3.0之後,我們可以用一個變量來動態調用類。但該變量的值不能為關鍵字self, parent 或static。
定義和使用一個類常量
復制代碼 代碼如下:
<?php
class MyClass
{
const constant = ‘constant value';
function showConstant() {
echo self::constant . “\n”;
}
}
echo MyClass::constant . “\n”;
$classname = “MyClass”;
echo $classname::constant . “\n”; // PHP 5.3.0之後
$class = new MyClass();
$class->showConstant();
echo $class::constant.”\n”; // PHP 5.3.0之後
?>
Example #2 靜態數據示例
復制代碼 代碼如下:
<?php
class foo {
// PHP 5.3.0之後
const bar = <<<'EOT'
bar
EOT;
}
?>