PDA

View Full Version : Little questions on PHP string syntax.


MrApples
02-10-2008, 05:19 AM
$var = "<img width="5" src="/blah.png">"; is bad?
$var = '<img width="5" src="/blah.png">'; is good?
$var = "<img width=\"5\" src=\"/blah.png\">"; is good?
$var = '<img width=\"5\" src=\"/blah.png\">'; is bad?
$var = "<img width='5' src='/blah.png'>"; is good?
$var = "<img width=\'5\' src=\'/blah.png\'>"; is bad?
$var = "start " . $var . " end"; is good?

If someone could clarify this that would be great. Yes they are all different.

Marco van Herwaarden
02-10-2008, 08:00 AM
Simple. Inside HTML text (ie. src="..") double quotes are used to identify text.

With PHP you have 2 options to enclose something:
- Single quotes: No evaluation of the content takes place
- Double quotes: Content is evaluated (ie. variables and such)

If you use double quotes inside a text, and you enclose the text with double quotes, then PHP will not know where the text starts and where it ends. It will read the first double quote as start en the 2nd (ie. the one embedded in the text) as closing quote. To avoid this enclose text that has a double-quote inside by single quotes. Alternative would be to escape special characters like the doube-quote with the escape character \.

Opserty
02-10-2008, 08:32 AM
My personal preference is single quotes then escaping for variables:

$string = '<img src="someimage.gif" alt="'. $alt_text .'" />';


Official documentation: http://uk3.php.net/manual/en/language.types.string.php if you want to read it.

MiahBeSmokin420
02-10-2008, 11:52 AM
dream weaver man dream weaver thats all i can really say

dream weaver basically builds stuff for you a you go to do stuff

MrApples
02-10-2008, 05:23 PM
Alright, I got it, thanks for your help. I'm almost sure that the questions I originally posted are all right (is good, is bad)

PHP only evaluates " " is good to know, thanks.