Patlayabilir ve işlevini çökmek kullanarak bir çözüm doğaçlama olabilir:
$array = array('lastname', 'email', 'phone');
define('DEFAULT_ROLES', implode (',' , $array));
echo explode(',' ,DEFAULT_ROLES ) [1];
Bu yankı email
.
Eğer bunu optimize etmek istiyorsanız daha fazla bu gibi sizin için tekrarlayan şeyler yapmak için 2 fonksiyonları tanımlayabilirsiniz:
//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] ;
}
Umut olur. Mutlu kodlama.