up vote 0 down vote favorite
share [g+] share [fb]

I want to do define the following variable $url

$url = www.example.com/$link;

where $link is another predefined variable text string e.g. testpage.php

But the above doesn't work, how do I correct the syntax?

Thanks

link|improve this question

72% accept rate
Did we all posted at the same time? I swear when I saw this question there was no answer and now there are 5 lol – AntonioCS Oct 23 '09 at 22:28
feedback

6 Answers

up vote 7 down vote accepted

Try this:

$url = "www.example.com/$link";

When string is in double quotes you can put variables inside it. Variable value will be inserted into string.

You can also use concatenation to join 2 strings:

$url = "www.example.com/" . $link;
link|improve this answer
Thanks. I had tried the first already and it failed but concatenation worked a treat. $link is a double array so maybe that's why Thanks a lot! – David Willis Oct 23 '09 at 22:30
feedback

Needs double quotes:

$url = "www.example.com/$link";
link|improve this answer
feedback

Alternate way:

$url = "www.example.com/{$link}";
link|improve this answer
feedback
$url = "www.example.com/$link";
link|improve this answer
feedback

Hate to duplicate an answer, but use single quotes to prevent the parser from having to look for variables in the double quotes. A few ms faster..

$url = 'www.example.com/' . $link;

EDIT: And yes.. where performance really mattered in an ajax backend I had written, replacing all my interpolation with concatenation gave me a 10ms boost in response time. Granted the script was 50k.

link|improve this answer
3  
Is it really a few milliseconds faster? Frankly, this is precisely where variable interpolation is useful - sure, if you have a string with no variable interpolation in, use single quotes, but this seems like a ridiculous premature optimisation that slightly damages readability. – Rob Oct 23 '09 at 22:40
Call me anal, but I also replace all common URL's with constants. – Daren Schwenke Oct 23 '09 at 22:47
@Rob: Not to be be a moron, but... a few milliseconds is actually a huge deal in the programming world. If they stack up, you've got a slow script on your hands. Were you meaning microseconds? There's a big difference. – brianreavis Oct 23 '09 at 23:45
feedback

It'd be helpful if you included the erroneous output, but as far as I can tell, you forgot to add double quotes:

$url = "www.example.com/$link";

You will almost certainly want to prepend "http://" to that url, as well.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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