<?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 isset and not empty</title>
	<atom:link href="http://stereointeractive.com/blog/2009/07/11/php-isset-and-not-empty/feed/" rel="self" type="application/rss+xml" />
	<link>http://stereointeractive.com/blog/2009/07/11/php-isset-and-not-empty/</link>
	<description>Development Blog</description>
	<lastBuildDate>Thu, 17 Jun 2010 09:37:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Andrew Noyes</title>
		<link>http://stereointeractive.com/blog/2009/07/11/php-isset-and-not-empty/comment-page-1/#comment-451</link>
		<dc:creator>Andrew Noyes</dc:creator>
		<pubDate>Mon, 27 Jul 2009 17:48:46 +0000</pubDate>
		<guid isPermaLink="false">http://stereointeractive.com/blog/?p=229#comment-451</guid>
		<description>To expand upon what Harry Walter said, empty() can&#039;t be used on the value returned by any function, be it an object method or a regular function. empty() has some funky behavior because it&#039;s part of the PHP interpreter and is a language component rather than a function, just like echo.</description>
		<content:encoded><![CDATA[<p>To expand upon what Harry Walter said, empty() can&#8217;t be used on the value returned by any function, be it an object method or a regular function. empty() has some funky behavior because it&#8217;s part of the PHP interpreter and is a language component rather than a function, just like echo.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Williams</title>
		<link>http://stereointeractive.com/blog/2009/07/11/php-isset-and-not-empty/comment-page-1/#comment-442</link>
		<dc:creator>Jon Williams</dc:creator>
		<pubDate>Sat, 11 Jul 2009 23:30:57 +0000</pubDate>
		<guid isPermaLink="false">http://stereointeractive.com/blog/?p=229#comment-442</guid>
		<description>And then there&#039;s array_key_exists() sigh…</description>
		<content:encoded><![CDATA[<p>And then there&#8217;s array_key_exists() sigh…</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Harry Walter</title>
		<link>http://stereointeractive.com/blog/2009/07/11/php-isset-and-not-empty/comment-page-1/#comment-441</link>
		<dc:creator>Harry Walter</dc:creator>
		<pubDate>Sat, 11 Jul 2009 22:12:32 +0000</pubDate>
		<guid isPermaLink="false">http://stereointeractive.com/blog/?p=229#comment-441</guid>
		<description>Bear in mind that you often can&#039;t use empty on the response from and object method unline isset.

For example in symfony if you had a blog object you can do:

if(isset($blog-&gt;getTitle()) &amp;&amp; $blog-&gt;getTitle() != &quot;&quot;){}

But you cannot do if(empty($blog-&gt;getTitle())){}</description>
		<content:encoded><![CDATA[<p>Bear in mind that you often can&#8217;t use empty on the response from and object method unline isset.</p>
<p>For example in symfony if you had a blog object you can do:</p>
<p>if(isset($blog-&gt;getTitle()) &amp;&amp; $blog-&gt;getTitle() != &#8220;&#8221;){}</p>
<p>But you cannot do if(empty($blog-&gt;getTitle())){}</p>
]]></content:encoded>
	</item>
</channel>
</rss>
