Hallo
ich habe folgendes Array $config :
Array
(
[path] => local
[lang] => de
)
jetzt geht mein script durch ein text-template und findet da eine Stelle
$config['path']
und jetzt soll mein Script dies durch den Variablenwert ersetzen, also hier "local"
mein Problem ist einfach nur, dass ich aus dem String
$str="\$config['path']";
nicht an den inhalt der Variable $config['path'] komme...
das problem ist, dass ich die syntax nicht rausfinde wie dies bei einem assoziativen array funktioniert..
normal ist das klar:
$hab="so gehts";
$will="hab";
echo ${$will};
könnt ihr mir helfen?
ich habe folgendes Array $config :
Array
(
[path] => local
[lang] => de
)
jetzt geht mein script durch ein text-template und findet da eine Stelle
$config['path']
und jetzt soll mein Script dies durch den Variablenwert ersetzen, also hier "local"
mein Problem ist einfach nur, dass ich aus dem String
$str="\$config['path']";
nicht an den inhalt der Variable $config['path'] komme...
das problem ist, dass ich die syntax nicht rausfinde wie dies bei einem assoziativen array funktioniert..
normal ist das klar:
$hab="so gehts";
$will="hab";
echo ${$will};
könnt ihr mir helfen?
Kommentar