<?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>C.K. Blog &#187; PHP</title>
	<atom:link href="http://cckk.tw/wordpress/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://cckk.tw/wordpress</link>
	<description>全新上市，保固數年!!</description>
	<lastBuildDate>Fri, 30 Mar 2012 06:06:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>PHP 5.2.X 升級 PHP 5.3.X 後不宜使用的function</title>
		<link>http://cckk.tw/wordpress/295/</link>
		<comments>http://cckk.tw/wordpress/295/#comments</comments>
		<pubDate>Sun, 30 Oct 2011 06:01:09 +0000</pubDate>
		<dc:creator>C.K.</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://cckk.tw/wordpress/?p=295</guid>
		<description><![CDATA[分享到Facebook Deprecated features in PHP 5.3.x PHP 5.3.0 introduces two new error levels: E_DEPRECATED and E_USER_DEPRECATED. The E_DEPRECATED error level is used to indicate that a function or feature has been deprecated. The E_USER_DEPRECATED level is intended for indicating deprecated features in user code, similarly to the E_USER_ERROR and E_USER_WARNING levels. The following is a [...]]]></description>
		<wfw:commentRss>http://cckk.tw/wordpress/295/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>在Linux安裝 php + mcrypt</title>
		<link>http://cckk.tw/wordpress/262/</link>
		<comments>http://cckk.tw/wordpress/262/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 07:02:45 +0000</pubDate>
		<dc:creator>C.K.</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[mcrypt]]></category>

		<guid isPermaLink="false">http://cckk.tw/wordpress/?p=262</guid>
		<description><![CDATA[分享到Facebook 首先先到mcrypt網站下載為新版本 http://sourceforge.net/projects/mcrypt/files/Libmcrypt/ 下載完解壓縮 tar zxvf libmcrypt-2.5.8.tar.gz cd libmcrypt-2.5.8 先安裝 ltdl cd libltdl ./configure --enable-ltdl-install make;make install 再安裝libmcrypt套件 cd .. ./configure --disable-posix-threads make;make install 然後再去編譯php ./configure --with-mcrypt=/usr/local]]></description>
		<wfw:commentRss>http://cckk.tw/wordpress/262/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Easter Egg</title>
		<link>http://cckk.tw/wordpress/232/</link>
		<comments>http://cckk.tw/wordpress/232/#comments</comments>
		<pubDate>Mon, 03 May 2010 14:17:00 +0000</pubDate>
		<dc:creator>C.K.</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://cckk.tw/wordpress/?p=232</guid>
		<description><![CDATA[分享到Facebook 如何關閉 PHP 彩蛋 在安裝php時預設只要在php檔案後面加上 ?=PHPE9568F36-D428-11d2-A769-00AA001ACF42(圖片) ?=PHPB8B5F2A0-3C92-11d3-A3A9-4C7B08C10000(說明) 修改php.ini 將下述 expose_php 由 On 改成 Off 即可]]></description>
		<wfw:commentRss>http://cckk.tw/wordpress/232/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux 安裝 nginx + php + php-fpm</title>
		<link>http://cckk.tw/wordpress/211/</link>
		<comments>http://cckk.tw/wordpress/211/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 01:20:25 +0000</pubDate>
		<dc:creator>C.K.</dc:creator>
				<category><![CDATA[人工自動]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[php-fpm]]></category>

		<guid isPermaLink="false">http://cckk.tw/wordpress/?p=211</guid>
		<description><![CDATA[分享到Facebook 因PHP 5.2.X並無php-fpm所以要另外做path 1.做PHP patch和重新編譯 先從PHP官網下載最新版的PHP5.2.x原始碼檔案， 還有對應5.2.x版本的PHP-FPM diff檔並做Patch， 這裡以php-5.2.17做範例 wget http://tw2.php.net/distributions/php-5.2.17.tar.gz wget http://php-fpm.org/downloads/php-5.2.17-fpm-0.5.14.diff.gz tar -zxvf php-5.2.17.tar.gz gzip -cd php-5.2.17-fpm-0.5.14.diff.gz &#124; patch -d php-5.2.17 -p1 2.編譯前檢測及設定 這是我編譯時的設定，參考看看，還有我指定了php及php-fpm設定檔的位置，後面會用到，跟我不一樣的要注意一下喔~ ./configure --with-config-file-path=/usr/local/php5 --sysconfdir=/usr/local/php5 --enable-fastcgi --enable-fpm --with-fpm-conf=/etc/php-fpm/php-fpm.conf --with-fpm-log=/var/log/php-fpm/php-fpm.log --with-fpm-pid=/var/run/php-fpm/php-fpm.pid --with-mcrypt --with-zlib --enable-mbstring --with-openssl --with-gd --with-mysql=/usr/bin --with-mysql-sock=/var/run/mysqld/mysqld.sock --with-mysqli=/usr/bin/mysql_config --with-pdo-mysql=mysqlnd --with-mcrypt --with-zlib --enable-pdo=/usr/bin --with-pdo-mysql=/usr/bin/mysql_config &#160; make;make install 3. 後續設定 官方有提供製作init.d script的方法，來做一下吧~ ln [...]]]></description>
		<wfw:commentRss>http://cckk.tw/wordpress/211/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Send MSN or Yahoo message from PHP</title>
		<link>http://cckk.tw/wordpress/176/</link>
		<comments>http://cckk.tw/wordpress/176/#comments</comments>
		<pubDate>Sat, 01 Aug 2009 01:56:29 +0000</pubDate>
		<dc:creator>C.K.</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[MSN]]></category>
		<category><![CDATA[WLM]]></category>

		<guid isPermaLink="false">http://cckk.tw/wordpress/?p=176</guid>
		<description><![CDATA[分享到Facebook http://code.google.com/p/phpmsnclass/ 說明 MSN class for php, support MSNP9 (MSN 6.2) and MSNP15 (WLM 8.1), use asa bot or just send message to MSN or Yahoo (via MSN, you need Yahoo 8.1to communicate with MSN). Support OIM (offline message) if usingMSNP15. 系統需求 PHP 模組：curl, pcre, mhash, mcrypt, bcmath 至少兩組 MSN 帳號作傳訊測試 // 檢查 PHP 現有模組 [...]]]></description>
		<wfw:commentRss>http://cckk.tw/wordpress/176/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

