<?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>Hayat-ıWeb için yorumlar</title>
	<atom:link href="http://www.mucahityenen.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mucahityenen.com/blog</link>
	<description>iyi yazılımcı, tembel yazılımcıdır</description>
	<lastBuildDate>Thu, 05 Apr 2012 09:46:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
	<item>
		<title>php serialize&amp;unserialize işlemleri! yazısına admin tarafından yapılan yorumlar</title>
		<link>http://www.mucahityenen.com/blog/php-serializeunserialize-islemleri/#comment-799</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 05 Apr 2012 09:46:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.mucahityenen.com/blog/?p=518#comment-799</guid>
		<description>Teşekkürler bilgilendirme için.
ben json açık olmayan serverları düşünerek yazmıştım bu örneği.
ama tabi metinde belirtmem gerekirdi !</description>
		<content:encoded><![CDATA[<p>Teşekkürler bilgilendirme için.<br />
ben json açık olmayan serverları düşünerek yazmıştım bu örneği.<br />
ama tabi metinde belirtmem gerekirdi !</p>
]]></content:encoded>
	</item>
	<item>
		<title>Php ile kelimenin ilk hatfini büyük yapma tr destekli (ucwords) ! yazısına haciyatmaz tarafından yapılan yorumlar</title>
		<link>http://www.mucahityenen.com/blog/php-ile-kelimenin-ilk-hatfini-buyuk-yapma-tr-destekli-ucwords/#comment-705</link>
		<dc:creator>haciyatmaz</dc:creator>
		<pubDate>Sat, 18 Feb 2012 21:32:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.mucahityenen.com/blog/?p=421#comment-705</guid>
		<description>buda mbstring kütüphanesine ihtiyaç duymayan uc_words fonksiyonu;

function uc_words($gelen)
{
    $kc = array(&#039;a&#039;,&#039;b&#039;,&#039;c&#039;,&#039;ç&#039;,&#039;d&#039;,&#039;e&#039;,&#039;f&#039;,&#039;g&#039;,&#039;ğ&#039;,&#039;h&#039;,&#039;ı&#039;,&#039;i&#039;,&#039;j&#039;,&#039;k&#039;,&#039;l&#039;,&#039;m&#039;,&#039;n&#039;,&#039;o&#039;,&#039;ö&#039;,&#039;p&#039;,&#039;q&#039;,&#039;r&#039;,&#039;s&#039;,&#039;ş&#039;,&#039;t&#039;,&#039;u&#039;,&#039;ü&#039;,&#039;v&#039;,&#039;w&#039;,&#039;x&#039;,&#039;y&#039;,&#039;z&#039;);
    $by = array(&#039;A&#039;,&#039;B&#039;,&#039;C&#039;,&#039;Ç&#039;,&#039;D&#039;,&#039;E&#039;,&#039;F&#039;,&#039;G&#039;,&#039;Ğ&#039;,&#039;H&#039;,&#039;I&#039;,&#039;İ&#039;,&#039;J&#039;,&#039;K&#039;,&#039;L&#039;,&#039;M&#039;,&#039;N&#039;,&#039;O&#039;,&#039;Ö&#039;,&#039;P&#039;,&#039;Q&#039;,&#039;R&#039;,&#039;S&#039;,&#039;Ş&#039;,&#039;T&#039;,&#039;U&#039;,&#039;Ü&#039;,&#039;V&#039;,&#039;W&#039;,&#039;X&#039;,&#039;Y&#039;,&#039;Z&#039;);
    $kelime = preg_split(&#039;^\s ^si&#039;, $gelen);
    foreach ($kelime as $k) {
        $ilk = substr($k, 0, 1);
        if ($ilk == &#039;(&#039; &#124;&#124; $ilk == &#039;[&#039; &#124;&#124; $ilk == &#039;{&#039;) {
            $x = substr($k, 0, 1);
            $k = substr($k, 1, utf8_strlen($k));
            $verix = substr($k, 1, utf8_strlen($k));
            $veri[] = $x . str_replace($kc, $by, substr($k, 0, 1)) . $verix;
        } else {
            $veri[] = str_replace($kc, $by, $ilk) . substr($k, 1, utf8_strlen($k));
        }
        unset($ilk, $verix);
    }
    return join(&#039; &#039;, $veri);
}</description>
		<content:encoded><![CDATA[<p>buda mbstring kütüphanesine ihtiyaç duymayan uc_words fonksiyonu;</p>
<p>function uc_words($gelen)<br />
{<br />
    $kc = array(&#8216;a&#8217;,'b&#8217;,'c&#8217;,'ç&#8217;,'d&#8217;,'e&#8217;,'f&#8217;,'g&#8217;,'ğ&#8217;,'h&#8217;,'ı&#8217;,'i&#8217;,'j&#8217;,'k&#8217;,'l&#8217;,'m&#8217;,'n&#8217;,'o&#8217;,'ö&#8217;,'p&#8217;,'q&#8217;,'r&#8217;,'s&#8217;,'ş&#8217;,'t&#8217;,'u&#8217;,'ü&#8217;,'v&#8217;,'w&#8217;,'x&#8217;,'y&#8217;,'z&#8217;);<br />
    $by = array(&#8216;A&#8217;,'B&#8217;,'C&#8217;,'Ç&#8217;,'D&#8217;,'E&#8217;,'F&#8217;,'G&#8217;,'Ğ&#8217;,'H&#8217;,'I&#8217;,'İ&#8217;,'J&#8217;,'K&#8217;,'L&#8217;,'M&#8217;,'N&#8217;,'O&#8217;,'Ö&#8217;,'P&#8217;,'Q&#8217;,'R&#8217;,'S&#8217;,'Ş&#8217;,'T&#8217;,'U&#8217;,'Ü&#8217;,'V&#8217;,'W&#8217;,'X&#8217;,'Y&#8217;,'Z&#8217;);<br />
    $kelime = preg_split(&#8216;^\s ^si&#8217;, $gelen);<br />
    foreach ($kelime as $k) {<br />
        $ilk = substr($k, 0, 1);<br />
        if ($ilk == &#8216;(&#8216; || $ilk == &#8216;[' || $ilk == '{') {<br />
            $x = substr($k, 0, 1);<br />
            $k = substr($k, 1, utf8_strlen($k));<br />
            $verix = substr($k, 1, utf8_strlen($k));<br />
            $veri[] = $x . str_replace($kc, $by, substr($k, 0, 1)) . $verix;<br />
        } else {<br />
            $veri[] = str_replace($kc, $by, $ilk) . substr($k, 1, utf8_strlen($k));<br />
        }<br />
        unset($ilk, $verix);<br />
    }<br />
    return join(&#8216; &#8216;, $veri);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>php serialize&amp;unserialize işlemleri! yazısına haciyatmaz tarafından yapılan yorumlar</title>
		<link>http://www.mucahityenen.com/blog/php-serializeunserialize-islemleri/#comment-704</link>
		<dc:creator>haciyatmaz</dc:creator>
		<pubDate>Sat, 18 Feb 2012 21:29:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.mucahityenen.com/blog/?p=518#comment-704</guid>
		<description>performans açısından json_encode ve json_Decode kullanılmasını tavsiye ediyorum. tabi json fonksiyonları json kütüphanesi gerektirmekte bu kütüphane çogu hostta açıktır. şayet json eklentisi kuulu değilse serialize iş görür.</description>
		<content:encoded><![CDATA[<p>performans açısından json_encode ve json_Decode kullanılmasını tavsiye ediyorum. tabi json fonksiyonları json kütüphanesi gerektirmekte bu kütüphane çogu hostta açıktır. şayet json eklentisi kuulu değilse serialize iş görür.</p>
]]></content:encoded>
	</item>
	<item>
		<title>php simplexml_load_file ile kolay xml okuma ! yazısına admin tarafından yapılan yorumlar</title>
		<link>http://www.mucahityenen.com/blog/php-simplexml_load_file-ile-kolay-xml-okuma/#comment-285</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sat, 19 Nov 2011 11:47:04 +0000</pubDate>
		<guid isPermaLink="false">http://mucahityenen.com/blog/?p=395#comment-285</guid>
		<description>faydalı olduysa ne mutlu</description>
		<content:encoded><![CDATA[<p>faydalı olduysa ne mutlu</p>
]]></content:encoded>
	</item>
	<item>
		<title>php simplexml_load_file ile kolay xml okuma ! yazısına Şafak SARAÇOĞLU tarafından yapılan yorumlar</title>
		<link>http://www.mucahityenen.com/blog/php-simplexml_load_file-ile-kolay-xml-okuma/#comment-277</link>
		<dc:creator>Şafak SARAÇOĞLU</dc:creator>
		<pubDate>Fri, 04 Nov 2011 07:12:20 +0000</pubDate>
		<guid isPermaLink="false">http://mucahityenen.com/blog/?p=395#comment-277</guid>
		<description>Teşekkür ederim güzel paylaşım olmuş</description>
		<content:encoded><![CDATA[<p>Teşekkür ederim güzel paylaşım olmuş</p>
]]></content:encoded>
	</item>
	<item>
		<title>ASP Access random kayıt getirme sorununun çözümü yazısına Tunç tarafından yapılan yorumlar</title>
		<link>http://www.mucahityenen.com/blog/asp-access-random-kayit-getirme-sorununun-cozumu/#comment-271</link>
		<dc:creator>Tunç</dc:creator>
		<pubDate>Tue, 25 Oct 2011 18:55:09 +0000</pubDate>
		<guid isPermaLink="false">http://mucahityenen.com/blog/?p=17#comment-271</guid>
		<description>çok saol kardeş Allah işini rast getirsin</description>
		<content:encoded><![CDATA[<p>çok saol kardeş Allah işini rast getirsin</p>
]]></content:encoded>
	</item>
	<item>
		<title>Divlerde yazıların taşması sorunsalı! yazısına admin tarafından yapılan yorumlar</title>
		<link>http://www.mucahityenen.com/blog/divlerde-yazilarin-tasmasi-sorunsali/#comment-201</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 17 Aug 2011 21:40:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.mucahityenen.com/blog/?p=497#comment-201</guid>
		<description>normal şartlarda çözülmesi lazım geliştirdiğimiz bir projede kullanıyoruz bir sıkıntı yaşamadık</description>
		<content:encoded><![CDATA[<p>normal şartlarda çözülmesi lazım geliştirdiğimiz bir projede kullanıyoruz bir sıkıntı yaşamadık</p>
]]></content:encoded>
	</item>
	<item>
		<title>Divlerde yazıların taşması sorunsalı! yazısına kadir tarafından yapılan yorumlar</title>
		<link>http://www.mucahityenen.com/blog/divlerde-yazilarin-tasmasi-sorunsali/#comment-199</link>
		<dc:creator>kadir</dc:creator>
		<pubDate>Mon, 15 Aug 2011 09:42:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.mucahityenen.com/blog/?p=497#comment-199</guid>
		<description>nedense cozulmedı</description>
		<content:encoded><![CDATA[<p>nedense cozulmedı</p>
]]></content:encoded>
	</item>
	<item>
		<title>PHP ile Delphi Tdatetime değerini unix timestamp&#8217;a çevirmek ! yazısına cardaddy tarafından yapılan yorumlar</title>
		<link>http://www.mucahityenen.com/blog/php-ile-delphi-tdatetime-degerini-unix-timestampa-cevirmek/#comment-171</link>
		<dc:creator>cardaddy</dc:creator>
		<pubDate>Mon, 18 Jul 2011 23:06:12 +0000</pubDate>
		<guid isPermaLink="false">http://mucahityenen.com/blog/?p=364#comment-171</guid>
		<description>I really appreciate what you’re writing here. Keep working that way. Take care!</description>
		<content:encoded><![CDATA[<p>I really appreciate what you’re writing here. Keep working that way. Take care!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Cufon nedir? nasıl kullanılır ? (computer user font) yazısına cardaddy tarafından yapılan yorumlar</title>
		<link>http://www.mucahityenen.com/blog/cufon-nedir-nasil-kullanilir-computer-user-font/#comment-166</link>
		<dc:creator>cardaddy</dc:creator>
		<pubDate>Mon, 11 Jul 2011 08:02:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.mucahityenen.com/blog/?p=492#comment-166</guid>
		<description>Thanks for your resource! I’ve just subscribed to it.</description>
		<content:encoded><![CDATA[<p>Thanks for your resource! I’ve just subscribed to it.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

