<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Netopsiyon Müşteri Destek Bloğu &#187; php</title>
	<atom:link href="http://www.netopsiyon.gen.tr/tag/php/feed" rel="self" type="application/rss+xml" />
	<link>http://www.netopsiyon.gen.tr</link>
	<description>Netopsiyon Müşteri Destek Sayfaları</description>
	<lastBuildDate>Tue, 02 Feb 2010 16:22:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Rastgele Şifre Üretmek</title>
		<link>http://www.netopsiyon.gen.tr/rastgele-sifre-uretmek.html</link>
		<comments>http://www.netopsiyon.gen.tr/rastgele-sifre-uretmek.html#comments</comments>
		<pubDate>Wed, 05 Aug 2009 07:14:05 +0000</pubDate>
		<dc:creator>Netopsiyon</dc:creator>
				<category><![CDATA[PHP Kod Örnekleri]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[şifre]]></category>

		<guid isPermaLink="false">http://www.netopsiyon.gen.tr/?p=41</guid>
		<description><![CDATA[PHP kod yazarken kullanabileceğiniz rastgele şifre üreten bir fonksiyon.

&#60;?PHP
&#160;
function sifre&#40;$uzunluk&#41;
&#123;
$karakterler = &#34;0123456789!@#$%^&#38;*()_+&#34;.
&#34;abcdefghijklmnopqrstuvwxyz&#34;.
&#34;ABCDEFGHIJKLMNOPQRSTUVWXYZ&#34;;
$str = &#34;&#34;;
while&#40;strlen&#40;$str&#41; &#60; $uzunluk&#41;
&#123;
$str .= substr&#40;$karakterler, &#40;rand&#40;&#41; % strlen&#40;$karakterler&#41;&#41;, 1&#41;;
&#125;
return&#40;$str&#41;;
&#125;
&#160;
echo sifre&#40;6&#41;; //6 yerine kaç karakter istiyorsanız onu yazabilirsiniz.
&#160;
?&#62;

]]></description>
		<wfw:commentRss>http://www.netopsiyon.gen.tr/rastgele-sifre-uretmek.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
