Jump to content

Global Variable Question


StormTheGates

Recommended Posts

Aright here is my situation. I have an array of language strings loaded at the top of the page from a language file. Then later the string is called. Some of the strings have variables in them. For example here is a sample:

 

<?php
24 => "You have withdrawn $$with from that ATM account. There is $$amount left.",
?>

 

And then later in the page it goes like this:

 

<?php
$amount -= $with;
$money=$money + ($with*.;
echo "$lang[24]";
?>

 

However I encounter a problem here, the variables are blank. Any idea why or a way I can fix it?

Link to comment
https://forums.phpfreaks.com/topic/115918-global-variable-question/
Share on other sites

Yes he said that because there were two dollar signs they must be escaped properly to display. However my previous reply to this one does not work either and it only uses one dollar sign.

 

itds not a string, string are within quotes.

 

Besides that, variables within strings are interpolated when the string is assigned to a variable, not later. What your doing would require eval which I wouldn't recommend. How about....

 

$s = 'Hello <foo>, this is <bar>';
$a = array('bob','jane');
echo str_replace(array('<foo>','<bar>'),$a,$s);

 

?

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.