<?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 for Php Developer - Istanbul</title>
	<atom:link href="http://develturk.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://develturk.com</link>
	<description>Ersin Güvenç's Personal Development Blog</description>
	<pubDate>Thu, 11 Mar 2010 23:04:00 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Prevent Duplication of Memory with Php5 Singleton Design Pattern by admin</title>
		<link>http://develturk.com/2009/04/17/prevent-duplication-of-memory-with-php5-singleton-design-pattern/comment-page-1/#comment-1693</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 25 Feb 2010 18:58:26 +0000</pubDate>
		<guid isPermaLink="false">http://develturk.com/?p=74#comment-1693</guid>
		<description>Yes this will not appear, this is a php base rule you can use return word 
&lt;code&gt;
function foo(){
$bar = new MyClass()
return $bar;
}

// call the foo handle
var_dump(foo());  // output object

// get instance way (recommended)
function foo(){
rerturn new MyClass::getInstance()-&gt;do_test();
}

foo();  // do_test output
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Yes this will not appear, this is a php base rule you can use return word<br />
<code><br />
function foo(){<br />
$bar = new MyClass()<br />
return $bar;<br />
}</p>
<p>// call the foo handle<br />
var_dump(foo());  // output object</p>
<p>// get instance way (recommended)<br />
function foo(){<br />
rerturn new MyClass::getInstance()->do_test();<br />
}</p>
<p>foo();  // do_test output<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Prevent Duplication of Memory with Php5 Singleton Design Pattern by Russ</title>
		<link>http://develturk.com/2009/04/17/prevent-duplication-of-memory-with-php5-singleton-design-pattern/comment-page-1/#comment-1692</link>
		<dc:creator>Russ</dc:creator>
		<pubDate>Thu, 25 Feb 2010 16:49:05 +0000</pubDate>
		<guid isPermaLink="false">http://develturk.com/?p=74#comment-1692</guid>
		<description>this is nice.  My question is if not using singleton, and you instantiate a class inside a function

function foo(){
 $bar = new MyClass()
}

is that class/variable local to the function?  Does it 'disappear' when the function completes?</description>
		<content:encoded><![CDATA[<p>this is nice.  My question is if not using singleton, and you instantiate a class inside a function</p>
<p>function foo(){<br />
 $bar = new MyClass()<br />
}</p>
<p>is that class/variable local to the function?  Does it &#8216;disappear&#8217; when the function completes?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Php Cat 0.0.3 alpha 2 Released! by admin</title>
		<link>http://develturk.com/2009/04/16/php-cat-003-alpha-2-released/comment-page-1/#comment-1672</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sat, 20 Feb 2010 22:09:27 +0000</pubDate>
		<guid isPermaLink="false">http://develturk.com/?p=33#comment-1672</guid>
		<description>sorry, i am not active in this project and i will not improve this class.. i guess you can fix it.. this is the original  aritcle --&gt;
http://dev.mysql.com/tech-resources/articles/hierarchical-data.html</description>
		<content:encoded><![CDATA[<p>sorry, i am not active in this project and i will not improve this class.. i guess you can fix it.. this is the original  aritcle &#8211;><br />
<a href="http://dev.mysql.com/tech-resources/articles/hierarchical-data.html" rel="nofollow">http://dev.mysql.com/tech-resources/articles/hierarchical-data.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Php Cat 0.0.3 alpha 2 Released! by loopb</title>
		<link>http://develturk.com/2009/04/16/php-cat-003-alpha-2-released/comment-page-1/#comment-1671</link>
		<dc:creator>loopb</dc:creator>
		<pubDate>Sat, 20 Feb 2010 22:00:10 +0000</pubDate>
		<guid isPermaLink="false">http://develturk.com/?p=33#comment-1671</guid>
		<description>in admin file i get problem with 
it must be like  and i get only the first node (root)</description>
		<content:encoded><![CDATA[<p>in admin file i get problem with<br />
it must be like  and i get only the first node (root)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Writing a Php5 Mvc Framework Part 6: Flexible db connection, Load Css and Js files, Creating Front Controller, doing Method Overridding and Obullo style writing by SlammedDime</title>
		<link>http://develturk.com/2010/02/13/writing-a-php5-mvc-framework-part-6-flexible-db-connection-load-css-and-js-files-creating-front-controller-doing-method-overridding-and-obullo-style-writing/comment-page-1/#comment-1645</link>
		<dc:creator>SlammedDime</dc:creator>
		<pubDate>Sat, 13 Feb 2010 23:46:12 +0000</pubDate>
		<guid isPermaLink="false">http://develturk.com/?p=240#comment-1645</guid>
		<description>Just in the last two weeks I decided to write my own framework from scratch, not only to help me learn more about OOP in PHP, but to understand exactly what was happening and how.  Your tutorials really helped me in writing my own and understanding the inner workings.  Thanks for the time/effort you've invested.</description>
		<content:encoded><![CDATA[<p>Just in the last two weeks I decided to write my own framework from scratch, not only to help me learn more about OOP in PHP, but to understand exactly what was happening and how.  Your tutorials really helped me in writing my own and understanding the inner workings.  Thanks for the time/effort you&#8217;ve invested.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About author by ersin</title>
		<link>http://develturk.com/about/comment-page-1/#comment-1587</link>
		<dc:creator>ersin</dc:creator>
		<pubDate>Fri, 29 Jan 2010 07:53:25 +0000</pubDate>
		<guid isPermaLink="false">http://develturk.com/?page_id=2#comment-1587</guid>
		<description>i need to merge last  version with /trunk

try it for now http://obullo.googlecode.com/svn/obullo_1.0_alpha6
this is the last version.

you can follow the last version from here
http://code.google.com/p/obullo/source/browse/

if you have still error let me know.
thanks.</description>
		<content:encoded><![CDATA[<p>i need to merge last  version with /trunk</p>
<p>try it for now <a href="http://obullo.googlecode.com/svn/obullo_1.0_alpha6" rel="nofollow">http://obullo.googlecode.com/svn/obullo_1.0_alpha6</a><br />
this is the last version.</p>
<p>you can follow the last version from here<br />
<a href="http://code.google.com/p/obullo/source/browse/" rel="nofollow">http://code.google.com/p/obullo/source/browse/</a></p>
<p>if you have still error let me know.<br />
thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About author by aboal3bd</title>
		<link>http://develturk.com/about/comment-page-1/#comment-1585</link>
		<dc:creator>aboal3bd</dc:creator>
		<pubDate>Fri, 29 Jan 2010 04:55:55 +0000</pubDate>
		<guid isPermaLink="false">http://develturk.com/?page_id=2#comment-1585</guid>
		<description>svn checkout http://obullo.googlecode.com/svn/trunk
svn: Server sent unexpected return value (502 Bad Gateway) in response to REPORT request for '/svn/!svn/vcc/default'</description>
		<content:encoded><![CDATA[<p>svn checkout <a href="http://obullo.googlecode.com/svn/trunk" rel="nofollow">http://obullo.googlecode.com/svn/trunk</a><br />
svn: Server sent unexpected return value (502 Bad Gateway) in response to REPORT request for &#8216;/svn/!svn/vcc/default&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Writing a Php5 MVC Framework like Code Igniter Part1: Controller,view,registry,loader by nithin</title>
		<link>http://develturk.com/2009/04/24/writing-a-php5-mvc-framework-like-code-igniter-part1-controller-view-registry-loader/comment-page-1/#comment-1570</link>
		<dc:creator>nithin</dc:creator>
		<pubDate>Tue, 26 Jan 2010 14:20:10 +0000</pubDate>
		<guid isPermaLink="false">http://develturk.com/?p=113#comment-1570</guid>
		<description>great,
Thanks</description>
		<content:encoded><![CDATA[<p>great,<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating Obullo PHP5 MVC-SSC Framework Part5: Writing __autoloader; javascript and css manager, intelligible tag builder and using session class with SSC functions. by karim_</title>
		<link>http://develturk.com/2009/11/12/creating-obullo-php5-mvc-ssc-framework-part5-writing-__autoloader-javascript-and-css-manager-intelligible-tag-builder-and-using-session-class-with-ssc-functions/comment-page-1/#comment-1364</link>
		<dc:creator>karim_</dc:creator>
		<pubDate>Wed, 06 Jan 2010 20:31:13 +0000</pubDate>
		<guid isPermaLink="false">http://develturk.com/?p=225#comment-1364</guid>
		<description>no comments here so far, so let me be the first:
great work, ive been looking for a complete tutorial/showcase on mvc frameworks, and im loving yours so far... im having a hard time catching up haha.

thanks!</description>
		<content:encoded><![CDATA[<p>no comments here so far, so let me be the first:<br />
great work, ive been looking for a complete tutorial/showcase on mvc frameworks, and im loving yours so far&#8230; im having a hard time catching up haha.</p>
<p>thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Subscribe to blog by Dogescops</title>
		<link>http://develturk.com/subscribe-to-blog/comment-page-1/#comment-1194</link>
		<dc:creator>Dogescops</dc:creator>
		<pubDate>Sun, 13 Dec 2009 15:35:15 +0000</pubDate>
		<guid isPermaLink="false">http://develturk.com/?page_id=161#comment-1194</guid>
		<description>Lots of people talk about this subject but you wrote down some true words.</description>
		<content:encoded><![CDATA[<p>Lots of people talk about this subject but you wrote down some true words.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
