2013年11月21日

PHP 動態常數名稱 Dynamic constant name

//定義Constant
define( CONSTANT_1 , 'value1' ) ;
define( CONSTANT_2 , 'value2' ) ;
define( CONSTANT_3 , 'value3' ) ;


//動態調用
echo constant( 'CONSTANT_' . 1);
echo constant( 'CONSTANT_' . 2);
echo constant( 'CONSTANT_' . 3);


這個方法適用在常數,若要動態取變數,請參閱
http://subocheng.blogspot.tw/2013/11/php-dynamic-variable-names-in-php.html

沒有留言:

張貼留言