Strange one, I must be missing something.

$city = "vancouver";

$insert1 = "https://www.site.ca/buy/vancouver/28130965/";    

$url2 = str_replace('/$city/','index.php?deal=',$insert1);

https://www.site.ca/buy/vancouver/28130965/ returned?

link|improve this question

2  
You are using single quotes. Use double quotes ". – Pekka Feb 4 '11 at 0:05
feedback

1 Answer

up vote 6 down vote accepted

You can interpolate variables only in double quotes. Use:

str_replace("/$city/", 'index.php?deal=', $insert1);

Or:

str_replace('/' . $city . '/', 'index.php?deal=', $insert1);
link|improve this answer
Thanks for the tip. – mrlayance Feb 4 '11 at 1:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.