I try to store different languages in .ini files.
language_en.ini :
HELLO_MSG = "Hello $user ! How are you ?"
php file
$user = "Mike";
$ini_array = parse_ini_file("language_en.ini");
echo $ini_array['HELLO_MSG'];
Output
Hello Mike ! How are you ?
Is it possible to use the $user variable that i set in the ini file or do get just an array with strings if i read in the .ini file with the "parse_ini_file" method.