这失败了:
define('DEFAULT_ROLES', array('guy', 'development team'));
显然,常量不能保存数组。解决这个问题的最佳方法是什么?
define('DEFAULT_ROLES', 'guy|development team');
//...
$default = explode('|', DEFAULT_ROLES);
这似乎是不必要的努力。
答案 0 :(得分:749)
从PHP 5.6开始,您可以使用const
声明一个数组常量:
<?php
const DEFAULT_ROLES = array('guy', 'development team');
短语法也有效,正如您所期望的那样:
<?php
const DEFAULT_ROLES = ['guy', 'development team'];
如果你有PHP 7,你可以最终使用define()
,就像你第一次尝试一样:
<?php
define('DEFAULT_ROLES', array('guy', 'development team'));
答案 1 :(得分:481)
注意:虽然这是公认的答案,但值得注意的是,在PHP 5.6+中你可以使用const数组 - see Andrea Faulds' answer below。
您也可以序列化您的数组,然后将其放入常量:
# define constant, serialize array
define ("FRUITS", serialize (array ("apple", "cherry", "banana")));
# use it
$my_fruits = unserialize (FRUITS);
答案 2 :(得分:140)
您可以将它们存储为类的静态变量:
class Constants {
public static $array = array('guy', 'development team');
}
# Warning: array can be changed lateron, so this is not a real constant value:
Constants::$array[] = 'newValue';
如果您不喜欢其他人可以更改阵列的想法,那么getter可能有所帮助:
class Constants {
private static $array = array('guy', 'development team');
public static function getArray() {
return self::$array;
}
}
$constantArray = Constants::getArray();
修改强>
从PHP5.4开始,甚至可以访问数组值而无需中间变量,即以下工作:
$x = Constants::getArray()['index'];
答案 3 :(得分:40)
<强> If you are using PHP 5.6 or above, use Andrea Faulds answer 强>
我正在使用它。我希望,它会帮助别人。
<强>的config.php 强>
class app{
private static $options = array(
'app_id' => 'hello',
);
public static function config($key){
return self::$options[$key];
}
}
在文件中,我需要常量。
require('config.php');
print_r(app::config('app_id'));
答案 4 :(得分:12)
这就是我使用的。它类似于soulmerge提供的示例,但这样您就可以获得完整数组或数组中的单个值。
class Constants {
private static $array = array(0 => 'apple', 1 => 'orange');
public static function getArray($index = false) {
return $index !== false ? self::$array[$index] : self::$array;
}
}
像这样使用:
Constants::getArray(); // Full array
// OR
Constants::getArray(1); // Value of 1 which is 'orange'
答案 5 :(得分:9)
您可以将其存储为常量中的JSON字符串。从应用的角度来看,JSON在其他情况下可能很有用。
define ("FRUITS", json_encode(array ("apple", "cherry", "banana")));
$fruits = json_decode (FRUITS);
var_dump($fruits);
答案 6 :(得分:5)
从PHP 5.6开始,您可以使用const
关键字定义常量数组,如下所示
const DEFAULT_ROLES = ['test', 'development', 'team'];
可以访问不同的元素,如下所示:
echo DEFAULT_ROLES[1];
....
从PHP 7开始,可以使用define
定义常量数组,如下所示:
define('DEFAULT_ROLES', [
'test',
'development',
'team'
]);
可以像以前一样访问不同的元素。
答案 7 :(得分:3)
我知道这是一个有点老问题,但这是我的解决方案:
<?php
class Constant {
private $data = [];
public function define($constant, $value) {
if (!isset($this->data[$constant])) {
$this->data[$constant] = $value;
} else {
trigger_error("Cannot redefine constant $constant", E_USER_WARNING);
}
}
public function __get($constant) {
if (isset($this->data[$constant])) {
return $this->data[$constant];
} else {
trigger_error("Use of undefined constant $constant - assumed '$constant'", E_USER_NOTICE);
return $constant;
}
}
public function __set($constant,$value) {
$this->define($constant, $value);
}
}
$const = new Constant;
我定义它是因为我需要在常量中存储对象和数组,所以我还将runkit安装到php,这样我就可以使$ const变量超全局了。
您可以将其用作$const->define("my_constant",array("my","values"));
或$const->my_constant = array("my","values");
要获得价值,只需致电$const->my_constant;
答案 8 :(得分:2)
做某种ser / deser或编码/解码技巧似乎很难看,并且要求你记住在尝试使用常量时你究竟做了什么。我认为带有访问器的类私有静态变量是一个不错的解决方案,但我会做得更好。只需要一个公共静态getter方法,它返回常量数组的定义。这需要最少的额外代码,并且不能意外修改数组定义。
class UserRoles {
public static function getDefaultRoles() {
return array('guy', 'development team');
}
}
initMyRoles( UserRoles::getDefaultRoles() );
如果你想让它看起来像一个定义的常量,你可以给它一个全部大写名称,但是记住添加&#39;()&#39;然后会很困惑。名字后的括号。
class UserRoles {
public static function DEFAULT_ROLES() { return array('guy', 'development team'); }
}
//but, then the extra () looks weird...
initMyRoles( UserRoles::DEFAULT_ROLES() );
我想你可以让方法全局更接近你要求的define()功能,但是你真的应该使用常量名称作为范围并避免使用全局变量。
答案 9 :(得分:2)
甚至可以使用关联数组...例如在类中。
class Test {
const
CAN = [
"can bark", "can meow", "can fly"
],
ANIMALS = [
self::CAN[0] => "dog",
self::CAN[1] => "cat",
self::CAN[2] => "bird"
];
static function noParameter() {
return self::ANIMALS[self::CAN[0]];
}
static function withParameter($which, $animal) {
return "who {$which}? a {$animal}.";
}
}
echo Test::noParameter() . "s " . Test::CAN[0] . ".<br>";
echo Test::withParameter(
array_keys(Test::ANIMALS)[2], Test::ANIMALS["can fly"]
);
// dogs can bark.
// who can fly? a bird.
答案 10 :(得分:2)
从PHP 7开始,您只需使用define()函数来定义常量数组:
define('ANIMALS', [
'dog',
'cat',
'bird'
]);
echo ANIMALS[1]; // outputs "cat"
答案 11 :(得分:2)
您可以像这样定义
define('GENERIC_DOMAIN',json_encode(array(
'gmail.com','gmail.co.in','yahoo.com'
)));
$domains = json_decode(GENERIC_DOMAIN);
var_dump($domains);
答案 12 :(得分:2)
使用爆炸和内爆功能,我们可以即兴创作解决方案:
$array = array('lastname', 'email', 'phone');
define('DEFAULT_ROLES', implode (',' , $array));
echo explode(',' ,DEFAULT_ROLES ) [1];
这将回显email
。
如果你想让它更优化它你可以定义2个函数来为你做重复的事情:
//function to define constant
function custom_define ($const , $array) {
define($const, implode (',' , $array));
}
//function to access constant
function return_by_index ($index,$const = DEFAULT_ROLES) {
$explodedResult = explode(',' ,$const ) [$index];
if (isset ($explodedResult))
return explode(',' ,$const ) [$index] ;
}
希望有所帮助。快乐的编码。
答案 13 :(得分:1)
是的,您可以将数组定义为常量。从 PHP 5.6以后,可以将常量定义为标量表达式,并且也可以定义数组常量。可以将常量定义为资源,但应该避免,因为它可能会导致意外结果。
<img src="www/img/patient_default.png" alt="Test" width="100px" height="100px">
有一个快乐的编码。
答案 14 :(得分:1)
如果您从2009年开始浏览此文档,而您不喜欢AbstractSingletonFactoryGenerators,则还有其他一些选择。
请记住,分配数组时会“复制”,或者在这种情况下会返回数组,因此实际上每次都获得相同的数组。 (请参阅PHP中数组的写时复制行为。)
function FRUITS_ARRAY(){
return array('chicken', 'mushroom', 'dirt');
}
function FRUITS_ARRAY(){
static $array = array('chicken', 'mushroom', 'dirt');
return $array;
}
function WHAT_ANIMAL( $key ){
static $array = (
'Merrick' => 'Elephant',
'Sprague' => 'Skeleton',
'Shaun' => 'Sheep',
);
return $array[ $key ];
}
function ANIMAL( $key = null ){
static $array = (
'Merrick' => 'Elephant',
'Sprague' => 'Skeleton',
'Shaun' => 'Sheep',
);
return $key !== null ? $array[ $key ] : $array;
}
答案 15 :(得分:0)
常量只能包含标量值,我建议你存储数组的序列化(或JSON编码表示)。
答案 16 :(得分:0)
如果您使用的是PHP 7和7+,则也可以使用类似的抓取方式
define('TEAM', ['guy', 'development team']);
echo TEAM[0];
// output from system will be "guy"
答案 17 :(得分:-1)
我同意eyze,常量往往是应用程序整个生命周期所需的单值。您可能会考虑使用配置文件而不是常量来处理此类事情。
如果你真的需要常量数组,你可以使用命名约定来模仿数组:例如DB_Name,DB_USER,DB_HOST等。
答案 18 :(得分:-2)
您也可能将数组分解为一系列常量。 (一个非常古老的学校解决方案)毕竟,数组是常量,所以你需要它的唯一原因是某些键的全局,快速,查找。
因此:
define('DEFAULT_ROLES', array('guy', 'development team'));
会变成:
define('DEFAULT_ROLES_0', 'guy');
define('DEFAULT_ROLES_1', 'development team');
是的,要考虑名称空间污染(以及许多防止它的前缀)。
答案 19 :(得分:-2)
define('MY_ARRAY_CONSTANT_DELIMETER', '|');
define('MY_ARRAY',implode(MY_ARRAY_CONSTANT_DELIMETER,array(1,2,3,4)));
//retrieving the array
$my_array = explode(MY_ARRAY_CONSTANT_DELIMETER, MY_ARRAY);
答案 20 :(得分:-2)
这是正确的,你不能将数组用于常量,只能使用scaler和null。使用数组作为常量的想法似乎有点倒退。
我建议做的是定义你自己的常量类并使用它来获得常量。