Re: [PHP] variable substitution
- From: ceo@xxxxxxxxx ("Richard Lynch")
- Date: Tue, 1 Jan 2008 17:31:01 -0600 (CST)
On Tue, January 1, 2008 4:17 pm, jekillen wrote:
Hello again;
I have two variables declared in the global scope of a script.
$string_a = 'stuff $string_b and more stuff';
$string_b = '';
One is a string with a reference for substitution to the other
string which is empty.
In the processing body of the script are if/if else blocks.
In these blocks I want to use $string_a and
set $string_b to a value
if( condition)
{ $string_b = 'by the way;';... etc
so $string_a should read:
"stuff and by the way; and more stuff"
But this substitution will not take place
in the context of the else if block. I do not
want to write $string_a in at least 5 different
if else blocks because it is about 10 lines
intended to be an e-mail message body -> !SPAM.
this script is used to process data sent from a
link in another e-mail message used to validate
and e-mail address.
Q: Is there a way to get the substitution to take
place here? (by reference, maybe?)
http://php.net/str_replace
--
Some people have a "gift" link here.
Know what I want?
I want you to buy a CD from some indie artist.
http://cdbaby.com/from/lynch
Yeah, I get a buck. So?
.
- Follow-Ups:
- Re: [PHP] variable substitution
- From: jekillen
- Re: [PHP] variable substitution
- References:
- variable substitution
- From: jekillen
- variable substitution
- Prev by Date: Re: [PHP] foreach questions
- Next by Date: Re: [PHP] Re: foreach questions
- Previous by thread: Re: [PHP] variable substitution
- Next by thread: Re: [PHP] variable substitution
- Index(es):
Relevant Pages
|