Search code examples
phplang

Usage of $LANG in php


I need to put this {$LANG.home} which equals to "Home", into this:

$ca->addToBreadCrumb('index.php','Home');

I tried: $ca->addToBreadCrumb('index.php',$LANG.home); but no cigar.

Any assistance would be greatly appreciated.


Solution

  • Well I'm going on a guess but if {$LANG.home} is a Smarty variable then $LANG is an array so:

    $ca->addToBreadCrumb('index.php', $LANG['home']);