I have a php associative array which contains more approximately 900 key-value and i am using it as a string file. The problem is now when I add another key-value , I am unable to retrieve the value by key. How ever if i delete some other key-value it works fine. I wonder if there is any size limit for array. Please help me, i don't want to split my array into different files. Thank you in advance. This is what y string file looks like
function lang($phrase){
static $lang = array(
't_sust_tour'=>'tour',
'process_report'=>'p report '
);
return $lang[$phrase];
}