Can someone explain to me what this means?? I have never seen this construct - taken from the Prestashop doc
foreach ( $languages as $language )
{
echo '<div id="test_' . $language['id_lang'|'id_lang'] .... // <-- What the??
// ...
}
$language contains the following keys:
Array
(
[id_lang] => 1
[name] => English (English)
// and others...
)
The result is that it takes the value of $language["id_lang"] - 1. But I don't understand the syntax and can't find any documentation about it.
'id_lang'|'id_lang' === 'id_lang', so I'm not really sure why they are doing that… – Rich Bradshaw Nov 19 '12 at 10:54|that were there for a reason, and then one was changed toid_lang, and the changer did not notice that the other one also had that value. – ACarter Nov 19 '12 at 19:00