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
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);

 

?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.