Is there a possibility to reference an element of an array in another element with the same array?
Let's say we want to make an array like this:
$a = array(
'base_url' => 'https://rh.example.com',
'URL_SLO_OpenAM_OIC' => 'https://openam.example.com/openam/UI/Logout?goto='.$this['base_url'],
);
Of course, it doesn't work because $this is intended for classes not for arrays. So is there an alternative?