<?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>Teknikhadise.com &#187; Php</title>
	<atom:link href="http://www.teknikhadise.com/kategori/php/feed" rel="self" type="application/rss+xml" />
	<link>http://www.teknikhadise.com</link>
	<description></description>
	<lastBuildDate>Fri, 26 Mar 2010 17:10:17 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Php 5.3.x&#8217;de onaylanmayan (Deprecated) fonksiyonlar</title>
		<link>http://www.teknikhadise.com/php-5-3-xde-onaylanmayan-deprecated-fonksiyonlar</link>
		<comments>http://www.teknikhadise.com/php-5-3-xde-onaylanmayan-deprecated-fonksiyonlar#comments</comments>
		<pubDate>Sun, 21 Feb 2010 22:54:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Php]]></category>
		<category><![CDATA[Deprecated]]></category>
		<category><![CDATA[php 5.3]]></category>
		<category><![CDATA[undefined]]></category>

		<guid isPermaLink="false">http://www.teknikhadise.com/?p=36</guid>
		<description><![CDATA[Php&#8217;nizi 5.3 sürümüne yükselttiğinizde bazı fonksiyonlarda &#8220;Fatal error:  Call to undefined function&#8221; gibi hatalar oluşabilir. Bu hatalardan kurtulmak için Php&#8217;nin onaylanmayan (deprecated) fonksiyonlar listesinden kullandığınız fonksiyonların yerine alternatiflerini kullanmalısınız.
Deprecated features in PHP 5.3.x
]]></description>
			<content:encoded><![CDATA[<p>Php&#8217;nizi 5.3 sürümüne yükselttiğinizde bazı fonksiyonlarda <strong>&#8220;Fatal error</strong>:  Call to undefined function&#8221; gibi hatalar oluşabilir. Bu hatalardan kurtulmak için Php&#8217;nin onaylanmayan (deprecated) fonksiyonlar listesinden kullandığınız fonksiyonların yerine alternatiflerini kullanmalısınız.</p>
<h3><a title="Php 5.3 onaylanmayan fonksiyonlar" href="http://us2.php.net/manual/tr/migration53.deprecated.php" target="_blank">Deprecated features in PHP 5.3.x</a></h3>
]]></content:encoded>
			<wfw:commentRss>http://www.teknikhadise.com/php-5-3-xde-onaylanmayan-deprecated-fonksiyonlar/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Htaccess ile sanal klasor şeklinde url</title>
		<link>http://www.teknikhadise.com/htaccess-ile-sanal-klasor-seklinde-url</link>
		<comments>http://www.teknikhadise.com/htaccess-ile-sanal-klasor-seklinde-url#comments</comments>
		<pubDate>Fri, 19 Feb 2010 20:27:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Php]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[kısa url]]></category>
		<category><![CDATA[rewrite]]></category>
		<category><![CDATA[sanal klasör]]></category>

		<guid isPermaLink="false">http://www.teknikhadise.com/?p=34</guid>
		<description><![CDATA[Gerek akılda kalıcılığı artırmak gerekse arama motorlarının taramasını kolaylaştırmak için düzenli adresler yapmaya ihtiyaç duyabilirsiniz. Bunu yapmak htaccess ile oldukça kolay.
Mesela www.teknikhadise.com/index.php?uye=aliveli şeklindeki adresi www.teknikhadise.com/aliveli şekline dönüştürmek için  htaccess dosyanıza aşağıdaki satırları eklemeniz yeterli.
RewriteEngine On
RewriteRule ^([a-zA-Z0-9_-]+)$ index.php?u=$1
RewriteRule ^([a-zA-Z0-9_-]+)/$ index.php?u=$1
RewriteEngine On
RewriteRule ^([a-zA-Z0-9_-]+)/([0-9]+)$ index.php?u=$1&#38;sayfa=$2
RewriteRule ^([a-zA-Z0-9_-]+)/([0-9]+)/$ index.php?u=$1&#38;sayfa=$2
Alt kısımdaki satırlar www.teknikhadise.com/index.php?uye=aliveli&#38;sayfa=2 şeklindeki adresi www.teknikhadise.com/aliveli/2 şeklinde dönüştürmenizi sağlar.
]]></description>
			<content:encoded><![CDATA[<p>Gerek akılda kalıcılığı artırmak gerekse arama motorlarının taramasını kolaylaştırmak için düzenli adresler yapmaya ihtiyaç duyabilirsiniz. Bunu yapmak htaccess ile oldukça kolay.</p>
<p>Mesela www.teknikhadise.com/index.php?uye=aliveli şeklindeki adresi www.teknikhadise.com/aliveli şekline dönüştürmek için  htaccess dosyanıza aşağıdaki satırları eklemeniz yeterli.</p>
<p>RewriteEngine On</p>
<p>RewriteRule ^([a-zA-Z0-9_-]+)$ index.php?u=$1</p>
<p>RewriteRule ^([a-zA-Z0-9_-]+)/$ index.php?u=$1</p>
<p>RewriteEngine On</p>
<p>RewriteRule ^([a-zA-Z0-9_-]+)/([0-9]+)$ index.php?u=$1&amp;sayfa=$2</p>
<p>RewriteRule ^([a-zA-Z0-9_-]+)/([0-9]+)/$ index.php?u=$1&amp;sayfa=$2</p>
<p>Alt kısımdaki satırlar www.teknikhadise.com/index.php?uye=aliveli&amp;sayfa=2 şeklindeki adresi www.teknikhadise.com/aliveli/2 şeklinde dönüştürmenizi sağlar.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.teknikhadise.com/htaccess-ile-sanal-klasor-seklinde-url/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ffmpeg ile video süre bilgisi alma</title>
		<link>http://www.teknikhadise.com/ffmpeg-ile-video-sure-bilgisi-alma</link>
		<comments>http://www.teknikhadise.com/ffmpeg-ile-video-sure-bilgisi-alma#comments</comments>
		<pubDate>Fri, 08 Jan 2010 05:09:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Php]]></category>
		<category><![CDATA[duration]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[ffmpeg duration]]></category>
		<category><![CDATA[getduration]]></category>

		<guid isPermaLink="false">http://www.teknikhadise.com/?p=24</guid>
		<description><![CDATA[
$video = new ffmpeg_movie(&#8220;$videoyolu&#8221;,false);
$sure = $video->getDuration();
echo &#8220;$sure&#8221;;

burada $videoyolu , süre bilgisini alacağımız dosyanın ftp&#8217;deki adresi.Çıktı saniye cinsinden olacaktır.
]]></description>
			<content:encoded><![CDATA[<blockquote><p>
$video = new ffmpeg_movie(&#8220;$videoyolu&#8221;,false);<br />
$sure = $video->getDuration();<br />
echo &#8220;$sure&#8221;;
</p></blockquote>
<p>burada $videoyolu , süre bilgisini alacağımız dosyanın ftp&#8217;deki adresi.Çıktı saniye cinsinden olacaktır.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.teknikhadise.com/ffmpeg-ile-video-sure-bilgisi-alma/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Saniyeyi hh:mm:ss formatına çevirme</title>
		<link>http://www.teknikhadise.com/saniyeyi-hhmmss-formatina-cevirme</link>
		<comments>http://www.teknikhadise.com/saniyeyi-hhmmss-formatina-cevirme#comments</comments>
		<pubDate>Fri, 08 Jan 2010 05:05:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Php]]></category>
		<category><![CDATA[date]]></category>

		<guid isPermaLink="false">http://www.teknikhadise.com/?p=22</guid>
		<description><![CDATA[
function surecevir ($saniye) {
$sure=date(&#8220;H:i:s&#8221;,-93600 + $saniye);
echo &#8220;$sure&#8221;;
}
surecevir($s);

Örneğin: surecevir(72); &#8216;nin çıktısı 00:01:12 olacaktır.
]]></description>
			<content:encoded><![CDATA[<blockquote><p>
function surecevir ($saniye) {<br />
$sure=date(&#8220;H:i:s&#8221;,-93600 + $saniye);<br />
echo &#8220;$sure&#8221;;<br />
}</p>
<p>surecevir($s);</p>
</blockquote>
<p>Örneğin: surecevir(72); &#8216;nin çıktısı 00:01:12 olacaktır.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.teknikhadise.com/saniyeyi-hhmmss-formatina-cevirme/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HH:MM:SS formatındaki süreyi saniyeye çevirme</title>
		<link>http://www.teknikhadise.com/hhmmss-formatindaki-sureyi-saniyeye-cevirme</link>
		<comments>http://www.teknikhadise.com/hhmmss-formatindaki-sureyi-saniyeye-cevirme#comments</comments>
		<pubDate>Fri, 08 Jan 2010 04:57:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Php]]></category>

		<guid isPermaLink="false">http://www.teknikhadise.com/?p=17</guid>
		<description><![CDATA[01:22:34 (HH:MM:SS) formatındaki süreyi saniye formatına çevirmek için aşağıdaki fonksiyonu kullanabilirsiniz.
 function surecevir ($sure) {
      list($saat, $dakika, $saniye) = explode (&#8220;:&#8221;, $sure);
      $seconds = 0;
      $yenisure += ($saat * 3600);
      $yenisure += ($dakika * 60);
 [...]]]></description>
			<content:encoded><![CDATA[<p>01:22:34 (HH:MM:SS) formatındaki süreyi saniye formatına çevirmek için aşağıdaki fonksiyonu kullanabilirsiniz.</p>
<blockquote><p> function surecevir ($sure) {</p>
<p>      list($saat, $dakika, $saniye) = explode (&#8220;:&#8221;, $sure);</p>
<p>      $seconds = 0;</p>
<p>      $yenisure += ($saat * 3600);</p>
<p>      $yenisure += ($dakika * 60);</p>
<p>      $yenisure += $saniye;</p>
<p>      echo &#8220;$yenisure <br />&#8220;;</p>
<p>      }</p>
<p>surecevir ($sure);</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.teknikhadise.com/hhmmss-formatindaki-sureyi-saniyeye-cevirme/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
