<?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: PHP: What is the &amp; Ampersand Preceding Variables</title>
	<atom:link href="http://www.whypad.com/posts/php-what-is-the-ampersand-preceding-variables/193/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.whypad.com/posts/php-what-is-the-ampersand-preceding-variables/193/</link>
	<description>Tools and Tricks for Life and Tech</description>
	<lastBuildDate>Mon, 23 Jan 2012 14:27:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: gautam</title>
		<link>http://www.whypad.com/posts/php-what-is-the-ampersand-preceding-variables/193/comment-page-1/#comment-5092</link>
		<dc:creator>gautam</dc:creator>
		<pubDate>Wed, 27 Oct 2010 09:14:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.whypad.com/?p=193#comment-5092</guid>
		<description>exactly what i want thanks a lot</description>
		<content:encoded><![CDATA[<p>exactly what i want thanks a lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bradford</title>
		<link>http://www.whypad.com/posts/php-what-is-the-ampersand-preceding-variables/193/comment-page-1/#comment-4507</link>
		<dc:creator>Bradford</dc:creator>
		<pubDate>Tue, 20 Jul 2010 19:07:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.whypad.com/?p=193#comment-4507</guid>
		<description>Thanks! Your site was the first that came up in my search. This behavior is like in java when a variable simply contains a pointer to another variable such as

String s = &quot;hello&quot;;
String t = s;

t is simply pointing to the memory location of s and when you change the value of s, t points to s all the same and will return the same new value.</description>
		<content:encoded><![CDATA[<p>Thanks! Your site was the first that came up in my search. This behavior is like in java when a variable simply contains a pointer to another variable such as</p>
<p>String s = &#8220;hello&#8221;;<br />
String t = s;</p>
<p>t is simply pointing to the memory location of s and when you change the value of s, t points to s all the same and will return the same new value.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://www.whypad.com/posts/php-what-is-the-ampersand-preceding-variables/193/comment-page-1/#comment-4232</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Mon, 28 Jun 2010 23:50:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.whypad.com/?p=193#comment-4232</guid>
		<description>@Al http://www.codefetch.com/examples.html

This is a site that lets you query source code of programming books with special characters like &#039;&amp;&#039;.</description>
		<content:encoded><![CDATA[<p>@Al <a href="http://www.codefetch.com/examples.html" rel="nofollow">http://www.codefetch.com/examples.html</a></p>
<p>This is a site that lets you query source code of programming books with special characters like &#8216;&amp;&#8217;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ToughT</title>
		<link>http://www.whypad.com/posts/php-what-is-the-ampersand-preceding-variables/193/comment-page-1/#comment-4098</link>
		<dc:creator>ToughT</dc:creator>
		<pubDate>Sun, 09 May 2010 21:42:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.whypad.com/?p=193#comment-4098</guid>
		<description>Hey, thanks for the great tip. I&#039;ve always wondered what the ampersand did. That will definitely be useful! Cheers</description>
		<content:encoded><![CDATA[<p>Hey, thanks for the great tip. I&#8217;ve always wondered what the ampersand did. That will definitely be useful! Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Byron Bennett</title>
		<link>http://www.whypad.com/posts/php-what-is-the-ampersand-preceding-variables/193/comment-page-1/#comment-3461</link>
		<dc:creator>Byron Bennett</dc:creator>
		<pubDate>Thu, 19 Nov 2009 17:43:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.whypad.com/?p=193#comment-3461</guid>
		<description>Al,

Yep...you&#039;re right...fixed. Thanks!

BB</description>
		<content:encoded><![CDATA[<p>Al,</p>
<p>Yep&#8230;you&#8217;re right&#8230;fixed. Thanks!</p>
<p>BB</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Al</title>
		<link>http://www.whypad.com/posts/php-what-is-the-ampersand-preceding-variables/193/comment-page-1/#comment-3460</link>
		<dc:creator>Al</dc:creator>
		<pubDate>Thu, 19 Nov 2009 17:38:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.whypad.com/?p=193#comment-3460</guid>
		<description>This is good to know. Google should have a way to find literal code like operators.

Shouldn&#039;t the line:

&amp;$ref = $original;

have the ampersand on the second variable?

$ref = &amp;$original;</description>
		<content:encoded><![CDATA[<p>This is good to know. Google should have a way to find literal code like operators.</p>
<p>Shouldn&#8217;t the line:</p>
<p>&amp;$ref = $original;</p>
<p>have the ampersand on the second variable?</p>
<p>$ref = &amp;$original;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew</title>
		<link>http://www.whypad.com/posts/php-what-is-the-ampersand-preceding-variables/193/comment-page-1/#comment-3370</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Thu, 05 Nov 2009 22:35:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.whypad.com/?p=193#comment-3370</guid>
		<description>Help I&#039;ve got a completely random PHP problem!</description>
		<content:encoded><![CDATA[<p>Help I&#8217;ve got a completely random PHP problem!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roel</title>
		<link>http://www.whypad.com/posts/php-what-is-the-ampersand-preceding-variables/193/comment-page-1/#comment-3082</link>
		<dc:creator>Roel</dc:creator>
		<pubDate>Thu, 27 Aug 2009 08:44:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.whypad.com/?p=193#comment-3082</guid>
		<description>ty, cool read hard to find!</description>
		<content:encoded><![CDATA[<p>ty, cool read hard to find!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: andy</title>
		<link>http://www.whypad.com/posts/php-what-is-the-ampersand-preceding-variables/193/comment-page-1/#comment-2342</link>
		<dc:creator>andy</dc:creator>
		<pubDate>Sun, 24 May 2009 00:25:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.whypad.com/?p=193#comment-2342</guid>
		<description>Nice!  You&#039;re right, it was hard to find on Google, excluding this post.</description>
		<content:encoded><![CDATA[<p>Nice!  You&#8217;re right, it was hard to find on Google, excluding this post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hayden Charles</title>
		<link>http://www.whypad.com/posts/php-what-is-the-ampersand-preceding-variables/193/comment-page-1/#comment-1773</link>
		<dc:creator>Hayden Charles</dc:creator>
		<pubDate>Mon, 16 Mar 2009 15:22:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.whypad.com/?p=193#comment-1773</guid>
		<description>I recently installed PHP5.2.8 using EasyPHP 3.0 on an XP machine and have been trying to install PEAR in order to access its templates but I keep getting a warning that the &quot;include_path defined in the currently used php.ini does not contain the PEAR PHP directory you just specified&quot;. 

However, even though I have changed the include_path in php.ini (which is located at C:\Program Files\EasyPHP 3.0\php) to &quot;c:\Program Files\EasyPHP 3.0\php\pear&quot;, I still keep getting the warning that the &quot;Current include path is .;C:\php5\pear&quot;. 

I have looked all over and have not located the php.ini file on the C: drive with the path .;C:\php5\pear. I cannot imagine where the include path .;C:\php5\pear is being read from during installation. 

I would appreciate it if someone could tell me where this path is being read from and how I can change it. 

I need to access the PEAR templates to build my application.</description>
		<content:encoded><![CDATA[<p>I recently installed PHP5.2.8 using EasyPHP 3.0 on an XP machine and have been trying to install PEAR in order to access its templates but I keep getting a warning that the &#8220;include_path defined in the currently used php.ini does not contain the PEAR PHP directory you just specified&#8221;. </p>
<p>However, even though I have changed the include_path in php.ini (which is located at C:\Program Files\EasyPHP 3.0\php) to &#8220;c:\Program Files\EasyPHP 3.0\php\pear&#8221;, I still keep getting the warning that the &#8220;Current include path is .;C:\php5\pear&#8221;. </p>
<p>I have looked all over and have not located the php.ini file on the C: drive with the path .;C:\php5\pear. I cannot imagine where the include path .;C:\php5\pear is being read from during installation. </p>
<p>I would appreciate it if someone could tell me where this path is being read from and how I can change it. </p>
<p>I need to access the PEAR templates to build my application.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

