その他の関数
PHP Manual

constant

(PHP 4 >= 4.0.4, PHP 5)

constant定数の値を返す

説明

mixed constant ( string $name )

name で指定した定数の値を返します。

constant() はある定数の値を取得する必要があるが、 その名前が不明な場合に有用です。これは、定数が変数に保存されているか、 関数により返されるかの場合です。

この関数は クラス定数に対しても動作します。

パラメータ

name

定数名。

返り値

定数の値、あるいはその定数が定義されていない場合に NULL を返します。

例1 constant() の例

<?php

define
("MAXSIZE"100);

echo 
MAXSIZE;
echo 
constant("MAXSIZE"); // ひとつ前の行と同じことです


interface bar {
    const 
test 'foobar!';
}

class 
foo {
    const 
test 'foobar!';
}

$const 'test';

var_dump(constant('bar::'$const)); // string(7) "foobar!"
var_dump(constant('foo::'$const)); // string(7) "foobar!"

?>

参考


その他の関数
PHP Manual
アダルトレンタルサーバー