General Guidelines for Quotes ?

This is a discussion on General Guidelines for Quotes ? within the PHP Language forums, part of the PHP Programming Forums category; Hi guys, I haven't done that much research on this topic but it seems I can use either the ...


Go Back   Usenet Forums > PHP Programming Forums > PHP Language

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 10-20-2004
Cyrus D.
 
Posts: n/a
Default General Guidelines for Quotes ?

Hi guys,

I haven't done that much research on this topic but it seems I can use
either the single quotes or the double quotes. SInce I am so used to C(++) I
prefer the double quotes and am wondering if they could possible be less
efficient. Maybe I should get in the habit of using single quotes with Php
instead ?

I like my code to be consistent, so in two very similar circumstances I
don't want one set of code using single quotes and the other double (I'm
kinda anal, what can I say ?)

Here are some simple and very common usages:

$fullname="Satan"; // regular assignment that may of may not get passed to
function

$match="/[0-9]/"; // same but will definitely get passed to a function
preg_match($match,$string);

$formdata=$_POST["formData"]; // for arrays

I have lots of similar code all throughout my Php programs. So what do you
think, should I be using the single of double quotes in those situations ? I
want to get into a good habbit now so I can write some solid stuff that I
don't have to go back and change.

Take care,
Cyrus


Reply With Quote
  #2 (permalink)  
Old 10-20-2004
jrf[no]
 
Posts: n/a
Default Re: General Guidelines for Quotes ?

Cyrus D. wrote:
> Hi guys,
>
> I haven't done that much research on this topic but it seems I can use
> either the single quotes or the double quotes. SInce I am so used to C(++) I
> prefer the double quotes and am wondering if they could possible be less
> efficient. Maybe I should get in the habit of using single quotes with Php
> instead ?
>
> I like my code to be consistent, so in two very similar circumstances I
> don't want one set of code using single quotes and the other double (I'm
> kinda anal, what can I say ?)
>
> Here are some simple and very common usages:
>
> $fullname="Satan"; // regular assignment that may of may not get passed to
> function
>
> $match="/[0-9]/"; // same but will definitely get passed to a function
> preg_match($match,$string);
>
> $formdata=$_POST["formData"]; // for arrays
>
> I have lots of similar code all throughout my Php programs. So what do you
> think, should I be using the single of double quotes in those situations ? I
> want to get into a good habbit now so I can write some solid stuff that I
> don't have to go back and change.
>
> Take care,
> Cyrus
>
>


Cyrus,

Have a look at the php online manual, they give some good guidelines on
when to use which and don't forget to look at HEREDOC style too.

The short of it is:
What's between single quotes will be interpreted literally, i.e. '*your
name is $name*' will print literally *your name is $name* without
evaluating $name to the value of the variable.
What's between double quotes will be evaluated, so "*your name is
$name*" would come out as for instance *your name is Cyrus*

Still, with double quotes you'll have to escape double quotes (such as
used in HTML), with single quotes, you don't have to.
Within double quotes escape characters such as \n for new line to create
readable code will be interpreted, within single quotes, those also
won't be interpreted.

So basically, don't be anal and use both.
Generally I use single quotes if it's plain HTML which I want to add to
a string and double quotes for anything that needs evaluating, i.e.:

var $theHtml = '<H2 class="testclass">This is just a plain header</H2>';
$theHtml .= '<P>Now I add some more information, such as this link:';
$theHtml .= "<A HREF=\"$basepath/$filename\">a link</A></P>";

I don't pretend that this is best practice or anything, but it works for me.

Good luck,
Juliette
Reply With Quote
  #3 (permalink)  
Old 10-20-2004
Tony Marston
 
Posts: n/a
Default Re: General Guidelines for Quotes ?

If a string contains a variable reference that needs to be replaced with the
contents of that variable, then you MUST use double quotes, as in
$var = 'sample';
echo "This is a string which references $var";

this will output: This is a string which references sample

If you use single quotes, as in
$var = 'sample';
echo 'This is a string which references $var';

this will output: This is a string which references $var

If you enclose a string in double quotes and it does not contain any
variables to be substituted then you are causing PHP to do more work than
necessary. It may only be a minimal difference, but it all adds up.

--
Tony Marston

http://www.tonymarston.net




"Cyrus D." <satan@invalid.org> wrote in message
news:ohvdd.29355$YM4.8681336@news4.srv.hcvlny.cv.n et...
> Hi guys,
>
> I haven't done that much research on this topic but it seems I can use
> either the single quotes or the double quotes. SInce I am so used to C(++)
> I prefer the double quotes and am wondering if they could possible be less
> efficient. Maybe I should get in the habit of using single quotes with Php
> instead ?
>
> I like my code to be consistent, so in two very similar circumstances I
> don't want one set of code using single quotes and the other double (I'm
> kinda anal, what can I say ?)
>
> Here are some simple and very common usages:
>
> $fullname="Satan"; // regular assignment that may of may not get passed to
> function
>
> $match="/[0-9]/"; // same but will definitely get passed to a function
> preg_match($match,$string);
>
> $formdata=$_POST["formData"]; // for arrays
>
> I have lots of similar code all throughout my Php programs. So what do you
> think, should I be using the single of double quotes in those situations ?
> I want to get into a good habbit now so I can write some solid stuff that
> I don't have to go back and change.
>
> Take care,
> Cyrus
>
>



Reply With Quote
  #4 (permalink)  
Old 10-20-2004
Pjotr Wedersteers
 
Posts: n/a
Default Re: General Guidelines for Quotes ?

Tony Marston wrote:
> If a string contains a variable reference that needs to be replaced
> with the contents of that variable, then you MUST use double quotes,
> as in $var = 'sample';
> echo "This is a string which references $var";
>
> this will output: This is a string which references sample
>
> If you use single quotes, as in
> $var = 'sample';
> echo 'This is a string which references $var';
>
> this will output: This is a string which references $var
>
> If you enclose a string in double quotes and it does not contain any
> variables to be substituted then you are causing PHP to do more work
> than necessary. It may only be a minimal difference, but it all adds
> up.


I tested your theory, and AFAIK using strings in double quotes WITHOUT
substitution vars uses the same amount of time as the single quoted ones.
Only when substitution _does_ take place the processing becomes
significantly slower. At least, that's what I get from my server. PHP
4.3.8/Apache 2

So I'd say go ahead and use what you like best. I use single quotes for
MySql queries, as it makes for an easier and nicer string and less risk.

Rgds
Pjotr




Reply With Quote
  #5 (permalink)  
Old 10-20-2004
Cyrus D.
 
Posts: n/a
Default Re: General Guidelines for Quotes ?

Thanks a lot for that information guys, it clears things up for me. I had no
idea you can put a variable inside a string with double quotes and have its
value come out. I have been using the dot (period) operator for that.

Is either method more efficient than the other, like so:

$strName='Satan';

echo "Welcome to my Web site $strName";

or

echo 'Welcome to my Web site ' . $strName;

I like the first method because it's easier to read; but I'll use the later
method if it's faster. Thanks again, I'm finally getting the hang of PHP
because of all the helpful people at this newsgroup :)

Take care,
Cyrus


Reply With Quote
  #6 (permalink)  
Old 10-21-2004
Nikolai Chuvakhin
 
Posts: n/a
Default Re: General Guidelines for Quotes ?

"Cyrus D." <satan@invalid.org> wrote in message
news:<3tydd.32511$YM4.9214366@news4.srv.hcvlny.cv. net>...
>
> Is either method more efficient than the other, like so:
>
> $strName='Satan';
> echo "Welcome to my Web site $strName";
>
> or
>
> echo 'Welcome to my Web site ' . $strName;


Neither. The most efficient method would be,

$strName='Satan';
echo 'Welcome to my Web site ', $strName;

The difference is that in the first case the double-quoted string
is parsed, in the second case, the single argument being passed
to echo requires concatenation, in the third case, you simply pass
two arguments to echo, so no string operation takes place.

Cheers,
NC
Reply With Quote
  #7 (permalink)  
Old 10-21-2004
Michael Fesser
 
Posts: n/a
Default Re: General Guidelines for Quotes ?

.oO("jrf[no]" <"jrf[no]"@[spam]jokeaday.net>)

>$theHtml .= "<A HREF=\"$basepath/$filename\">a link</A></P>";


You can also use single-quotes in HTML, no need for escaping:

....
$theHtml .= "<A HREF='$basepath/$filename'>a link</A></P>";

Micha
Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT +1. The time now is 08:08 AM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0