<?xml version="1.0" encoding="utf-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Microbenchmarks of single and double qouting.</title>
	<atom:link href="http://www.procata.com/blog/archives/2005/03/08/microbenchmarks-of-single-and-double-qouting/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.procata.com/blog/archives/2005/03/08/microbenchmarks-of-single-and-double-qouting/</link>
	<description>PHP Programming, Web Development, PHP Advocacy and PHP Best Practices.</description>
	<lastBuildDate>Sun, 14 Mar 2010 11:08:56 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: zawmn</title>
		<link>http://www.procata.com/blog/archives/2005/03/08/microbenchmarks-of-single-and-double-qouting/#comment-84742</link>
		<dc:creator>zawmn</dc:creator>
		<pubDate>Tue, 10 Nov 2009 09:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.procata.com/blog/archives/2005/03/08/microbenchmarks-of-single-and-double-qouting/#comment-84742</guid>
		<description>$a = &quot;Hello &quot;;

$b = &quot;World&quot;;

(a) $c = $a.$b;

(b) $c = &quot;$a$b&quot;;

I would like to know which one is faster to concat (a) or (b). OR if there is another faster way to contact, let me know.</description>
		<content:encoded><![CDATA[<p>$a = &#8220;Hello &#8220;;</p>
<p>$b = &#8220;World&#8221;;</p>
<p>(a) $c = $a.$b;</p>
<p>(b) $c = &#8220;$a$b&#8221;;</p>
<p>I would like to know which one is faster to concat (a) or (b). OR if there is another faster way to contact, let me know.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://www.procata.com/blog/archives/2005/03/08/microbenchmarks-of-single-and-double-qouting/#comment-22993</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Tue, 04 Jul 2006 05:18:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.procata.com/blog/archives/2005/03/08/microbenchmarks-of-single-and-double-qouting/#comment-22993</guid>
		<description>I guess that one uses microtime(). Of course the numbers will be different on different setups, but the relative results are what is important. I don&#039;t see where this person&#039;s test could be considered useless. It seems perfectly valid and well-constructed to me. I wish I could subscribe to these comments, because this is a topic in which I am interested. If anyone could drop me an e-mail regarding any important developments, I&#039;d really really appreciate it. :-)</description>
		<content:encoded><![CDATA[<p>I guess that one uses microtime(). Of course the numbers will be different on different setups, but the relative results are what is important. I don&#8217;t see where this person&#8217;s test could be considered useless. It seems perfectly valid and well-constructed to me. I wish I could subscribe to these comments, because this is a topic in which I am interested. If anyone could drop me an e-mail regarding any important developments, I&#8217;d really really appreciate it. <img src='http://www.procata.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://www.procata.com/blog/archives/2005/03/08/microbenchmarks-of-single-and-double-qouting/#comment-22991</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Tue, 04 Jul 2006 05:06:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.procata.com/blog/archives/2005/03/08/microbenchmarks-of-single-and-double-qouting/#comment-22991</guid>
		<description>http://us2.php.net/echo#66391</description>
		<content:encoded><![CDATA[<p><a href="http://us2.php.net/echo#66391" rel="nofollow">http://us2.php.net/echo#66391</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Mattocks</title>
		<link>http://www.procata.com/blog/archives/2005/03/08/microbenchmarks-of-single-and-double-qouting/#comment-16029</link>
		<dc:creator>Scott Mattocks</dc:creator>
		<pubDate>Fri, 14 Apr 2006 12:56:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.procata.com/blog/archives/2005/03/08/microbenchmarks-of-single-and-double-qouting/#comment-16029</guid>
		<description>In your test, you used one gigantic string. This is not very realistic. It is much more likely that a script will contain a whole lot of small strings. For example, a configuration file could easily have 2000 strings with just one or two words. Can you give me an idea of the difference between single and double quotes for lots of little strings.</description>
		<content:encoded><![CDATA[<p>In your test, you used one gigantic string. This is not very realistic. It is much more likely that a script will contain a whole lot of small strings. For example, a configuration file could easily have 2000 strings with just one or two words. Can you give me an idea of the difference between single and double quotes for lots of little strings.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: templaterie blog  -  Quotes in PHP</title>
		<link>http://www.procata.com/blog/archives/2005/03/08/microbenchmarks-of-single-and-double-qouting/#comment-9738</link>
		<dc:creator>templaterie blog  -  Quotes in PHP</dc:creator>
		<pubDate>Sun, 29 May 2005 22:54:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.procata.com/blog/archives/2005/03/08/microbenchmarks-of-single-and-double-qouting/#comment-9738</guid>
		<description>[...] Forum die Antwort, die Performance sei unterschiedlich. Singel ist schneller. Stimmt wohl: die mit singel quotes wird die amerikanische Verfassung [...]</description>
		<content:encoded><![CDATA[<p>[...] Forum die Antwort, die Performance sei unterschiedlich. Singel ist schneller. Stimmt wohl: die mit singel quotes wird die amerikanische Verfassung [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Moore&#8217;s Blog  &#187; Blog Archive   &#187; The Usability of Input Filtering</title>
		<link>http://www.procata.com/blog/archives/2005/03/08/microbenchmarks-of-single-and-double-qouting/#comment-7576</link>
		<dc:creator>Jeff Moore&#8217;s Blog  &#187; Blog Archive   &#187; The Usability of Input Filtering</dc:creator>
		<pubDate>Fri, 01 Apr 2005 06:24:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.procata.com/blog/archives/2005/03/08/microbenchmarks-of-single-and-double-qouting/#comment-7576</guid>
		<description>[...] iltering a new examination.  My problem with filtering is with usability.  The comments to this post are a good example.  There are o [...]</description>
		<content:encoded><![CDATA[<p>[...] iltering a new examination.  My problem with filtering is with usability.  The comments to this post are a good example.  There are o [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: :: onpk :: blog PHP, MySQL, développement web &#38; connexe(s)</title>
		<link>http://www.procata.com/blog/archives/2005/03/08/microbenchmarks-of-single-and-double-qouting/#comment-6032</link>
		<dc:creator>:: onpk :: blog PHP, MySQL, développement web &#38; connexe(s)</dc:creator>
		<pubDate>Thu, 10 Mar 2005 16:06:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.procata.com/blog/archives/2005/03/08/microbenchmarks-of-single-and-double-qouting/#comment-6032</guid>
		<description>&lt;strong&gt;Les outils de RAD et le monde PHP&lt;/strong&gt;

Le 14 avril prochain aura lieu le prochain Rendez-Vous AFUP : DreamWeaver, un outil de RAD pour PHP. Les inscriptions sont ouvertes depuis 2 jours seulement et au rythme où vont les choses, ça sera très vite plein (on peut accueillir 50 personnes et je...</description>
		<content:encoded><![CDATA[<p><strong>Les outils de RAD et le monde PHP</strong></p>
<p>Le 14 avril prochain aura lieu le prochain Rendez-Vous AFUP : DreamWeaver, un outil de RAD pour PHP. Les inscriptions sont ouvertes depuis 2 jours seulement et au rythme où vont les choses, ça sera très vite plein (on peut accueillir 50 personnes et je&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pure-PHP</title>
		<link>http://www.procata.com/blog/archives/2005/03/08/microbenchmarks-of-single-and-double-qouting/#comment-6030</link>
		<dc:creator>Pure-PHP</dc:creator>
		<pubDate>Wed, 09 Mar 2005 17:53:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.procata.com/blog/archives/2005/03/08/microbenchmarks-of-single-and-double-qouting/#comment-6030</guid>
		<description>Maybe you shuold use htmlentities, because php tags are not displayed in comment. For example in my last comment
Answer: &lt; ?php echo $answer; ?&gt;!</description>
		<content:encoded><![CDATA[<p>Maybe you shuold use htmlentities, because php tags are not displayed in comment. For example in my last comment<br />
Answer: &lt; ?php echo $answer; ?&gt;!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hendy Irawan</title>
		<link>http://www.procata.com/blog/archives/2005/03/08/microbenchmarks-of-single-and-double-qouting/#comment-6027</link>
		<dc:creator>Hendy Irawan</dc:creator>
		<pubDate>Wed, 09 Mar 2005 13:04:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.procata.com/blog/archives/2005/03/08/microbenchmarks-of-single-and-double-qouting/#comment-6027</guid>
		<description>Whew!

I never knew people worried about this teeny little teetsy bit of performance so much!! Phew!</description>
		<content:encoded><![CDATA[<p>Whew!</p>
<p>I never knew people worried about this teeny little teetsy bit of performance so much!! Phew!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pure-PHP</title>
		<link>http://www.procata.com/blog/archives/2005/03/08/microbenchmarks-of-single-and-double-qouting/#comment-6026</link>
		<dc:creator>Pure-PHP</dc:creator>
		<pubDate>Wed, 09 Mar 2005 07:29:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.procata.com/blog/archives/2005/03/08/microbenchmarks-of-single-and-double-qouting/#comment-6026</guid>
		<description>Answer: ! is faster, because there is no concatentation </description>
		<content:encoded><![CDATA[<p>Answer: ! is faster, because there is no concatentation</p>
]]></content:encoded>
	</item>
</channel>
</rss>
