<?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>10 Useful Code Snippets For PHP Developers yazısına yapılan yorumlar</title>
	<atom:link href="http://www.listelog.com/10-useful-code-snippets-for-php-developers/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.listelog.com/10-useful-code-snippets-for-php-developers/</link>
	<description>a place to share, bookmarks, resources, css, jquery, photoshop, design, inspiration</description>
	<lastBuildDate>Wed, 26 May 2010 12:58:38 +0300</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>php-html.net tarafından</title>
		<link>http://www.listelog.com/10-useful-code-snippets-for-php-developers/comment-page-1/#comment-1265</link>
		<dc:creator>php-html.net</dc:creator>
		<pubDate>Sat, 07 Nov 2009 20:38:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.listelog.com/?p=770#comment-1265</guid>
		<description>&lt;strong&gt;10 Useful Code Snippets For PHP Developers...&lt;/strong&gt;

10 Useful Code Snippets For PHP Developers: Validate E-Mail, Validate domain name, Truncate String, Get Real IP Address, SEO and URL Friendly String, Send Simple Mail, Directory Listing, Generate a Random String, Send Files Via FTP, Find title Tag and ...</description>
		<content:encoded><![CDATA[<p><strong>10 Useful Code Snippets For PHP Developers&#8230;</strong></p>
<p>10 Useful Code Snippets For PHP Developers: Validate E-Mail, Validate domain name, Truncate String, Get Real IP Address, SEO and URL Friendly String, Send Simple Mail, Directory Listing, Generate a Random String, Send Files Via FTP, Find title Tag and &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>CaChi tarafından</title>
		<link>http://www.listelog.com/10-useful-code-snippets-for-php-developers/comment-page-1/#comment-1036</link>
		<dc:creator>CaChi</dc:creator>
		<pubDate>Mon, 26 Oct 2009 12:27:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.listelog.com/?p=770#comment-1036</guid>
		<description>Hi man! use &lt;a href=&quot;http://php.net/manual/en/function.filter-var.php&quot; rel=&quot;nofollow&quot;&gt;filter_var&lt;/a&gt; is very powerfull and fast that regex...</description>
		<content:encoded><![CDATA[<p>Hi man! use <a href="http://php.net/manual/en/function.filter-var.php" rel="nofollow">filter_var</a> is very powerfull and fast that regex&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>pligg.com tarafından</title>
		<link>http://www.listelog.com/10-useful-code-snippets-for-php-developers/comment-page-1/#comment-643</link>
		<dc:creator>pligg.com</dc:creator>
		<pubDate>Fri, 16 Oct 2009 15:24:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.listelog.com/?p=770#comment-643</guid>
		<description>&lt;strong&gt;10 Useful Code Snippets For PHP Developers &#124; Listelog...&lt;/strong&gt;

Useful code snippets for PHP....</description>
		<content:encoded><![CDATA[<p><strong>10 Useful Code Snippets For PHP Developers | Listelog&#8230;</strong></p>
<p>Useful code snippets for PHP&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>PHP Snippets &#8211; six03 tarafından</title>
		<link>http://www.listelog.com/10-useful-code-snippets-for-php-developers/comment-page-1/#comment-465</link>
		<dc:creator>PHP Snippets &#8211; six03</dc:creator>
		<pubDate>Sat, 10 Oct 2009 17:22:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.listelog.com/?p=770#comment-465</guid>
		<description>[...] can see more snippets at this site and search for some more snippets of code [...]</description>
		<content:encoded><![CDATA[<p>[...] can see more snippets at this site and search for some more snippets of code [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>emincan tarafından</title>
		<link>http://www.listelog.com/10-useful-code-snippets-for-php-developers/comment-page-1/#comment-449</link>
		<dc:creator>emincan</dc:creator>
		<pubDate>Fri, 09 Oct 2009 18:10:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.listelog.com/?p=770#comment-449</guid>
		<description>I think we need for truncate function. Because substr_replace chops a word in half and becomes a problem with non-english characters.
e.g:
&lt;code&gt;echo substr_replace(&#039;şçşçşçşçiğiğşğşğ&#039;,&#039;...&#039;,3);&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>I think we need for truncate function. Because substr_replace chops a word in half and becomes a problem with non-english characters.<br />
e.g:<br />
<code>echo substr_replace('şçşçşçşçiğiğşğşğ','...',3);</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>vsr tarafından</title>
		<link>http://www.listelog.com/10-useful-code-snippets-for-php-developers/comment-page-1/#comment-448</link>
		<dc:creator>vsr</dc:creator>
		<pubDate>Fri, 09 Oct 2009 17:54:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.listelog.com/?p=770#comment-448</guid>
		<description>There is no need for truncate function (Point 3), PHP has got substr_replace.
&lt;code&gt;
substr_replace($text,&#039;...&#039;,25);
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>There is no need for truncate function (Point 3), PHP has got substr_replace.<br />
<code><br />
substr_replace($text,'...',25);<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Forsooth tarafından</title>
		<link>http://www.listelog.com/10-useful-code-snippets-for-php-developers/comment-page-1/#comment-447</link>
		<dc:creator>Forsooth</dc:creator>
		<pubDate>Fri, 09 Oct 2009 15:27:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.listelog.com/?p=770#comment-447</guid>
		<description>Great tips!  Thank you!</description>
		<content:encoded><![CDATA[<p>Great tips!  Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Ahab tarafından</title>
		<link>http://www.listelog.com/10-useful-code-snippets-for-php-developers/comment-page-1/#comment-443</link>
		<dc:creator>Ahab</dc:creator>
		<pubDate>Fri, 09 Oct 2009 13:02:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.listelog.com/?p=770#comment-443</guid>
		<description>Tip 8: I think you would benefit from using &quot;rand(0, strlen($string));&quot; instead of using &quot;rand(0, 36)&quot;.</description>
		<content:encoded><![CDATA[<p>Tip 8: I think you would benefit from using &#8220;rand(0, strlen($string));&#8221; instead of using &#8220;rand(0, 36)&#8221;.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
