Rohlan Posted August 12, 2010 Share Posted August 12, 2010 Hello. I have an array like this: Array ( [1] => MOR [2] => CON [3] => CP1 [4] => CP2 [5] => EMAIL [6] => NIF [7] => BI [8] => DIS ) And then I defined, for example this one variable: define("DIS","District"); When I try to... echo $array[8]; All I get is "DIS". I'm obviously trying to echo a string and it won't work that way... but I still gave it a try. How can I do this then? I need "District" to be outputted instead of the actual variable name. I know that if I were to "echo DIS;" this would work but that defeats the purpose as I have various defined variables per row... Thanks. Quote Link to comment https://forums.phpfreaks.com/topic/210556-echoing-defined-variables-from-an-array/ Share on other sites More sharing options...
AbraCadaver Posted August 12, 2010 Share Posted August 12, 2010 I'm not sure I understand without seeing where and how you use the constant, but try: echo constant('DIS'); Quote Link to comment https://forums.phpfreaks.com/topic/210556-echoing-defined-variables-from-an-array/#findComment-1098531 Share on other sites More sharing options...
Rohlan Posted August 12, 2010 Author Share Posted August 12, 2010 I edited my post as I was making little sense in some bits. But I will try your tip! thanks.. Edited: It works! Thanks! i didnt know that function... i guess i shouldve searched a bit better.. hehe... Quote Link to comment https://forums.phpfreaks.com/topic/210556-echoing-defined-variables-from-an-array/#findComment-1098536 Share on other sites More sharing options...
AbraCadaver Posted August 12, 2010 Share Posted August 12, 2010 I edited my post as I was making little sense in some bits. But I will try your tip! thanks.. Edited: It works! Thanks! i didnt know that function... i guess i shouldve searched a bit better.. hehe... Cool. I'm curious why you wouldn't use an array like this: $array['DIS'] = 'District'; //etc echo $array['DIS']; Quote Link to comment https://forums.phpfreaks.com/topic/210556-echoing-defined-variables-from-an-array/#findComment-1098538 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.