<?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>Monster Oasis &#187; php</title>
	<atom:link href="http://www.monster.com.tw/archives/tag/programmingphp/feed" rel="self" type="application/rss+xml" />
	<link>http://www.monster.com.tw</link>
	<description>Sky / Ocean / Tree</description>
	<lastBuildDate>Wed, 08 Feb 2012 08:14:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>[php] array_key_exists vs isset 那一個比較快?</title>
		<link>http://www.monster.com.tw/archives/2288</link>
		<comments>http://www.monster.com.tw/archives/2288#comments</comments>
		<pubDate>Wed, 31 Mar 2010 04:56:12 +0000</pubDate>
		<dc:creator>monster</dc:creator>
				<category><![CDATA[Programming/php]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.monster.com.tw/archives/2288</guid>
		<description><![CDATA[這些微差異要在大量的 loop 中才會有一些差別, 不過還是寫 code 時一次寫好吧 &#8212;&#62; 給我自己的提醒! 答案是 isset 比較快! ref. URL: http://www.alternateinterior.com/2006/11/comparing-array_key_exists-with-isset.html 相關資訊: A HOWTO on Optimizing PHP http://phplens.com/lens/php-book/optimizing-debugging-php.php Tuning Apache and PHP for Speed on Unix http://phplens.com/phpeverywhere/tuning-apache-php Share on Facebook]]></description>
		<wfw:commentRss>http://www.monster.com.tw/archives/2288/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[php] regular expression match</title>
		<link>http://www.monster.com.tw/archives/1670</link>
		<comments>http://www.monster.com.tw/archives/1670#comments</comments>
		<pubDate>Tue, 17 Nov 2009 08:05:11 +0000</pubDate>
		<dc:creator>monster</dc:creator>
				<category><![CDATA[Programming/php]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.monster.com.tw/archives/1670</guid>
		<description><![CDATA[preg_match( '/c=([0-9]+)/' , $t-&#62;log['dest_query'] , $data); 這樣可以取出 c=xxxx 抓 user agent 版本 preg_match( '/MSIE ([0-9]+.[0-9])/' , $_SERVER['HTTP_USER_AGENT'] , $data_msie_ver); preg_match( '/Windows NT ([0-9]+.[0-9])/' , $_SERVER['HTTP_USER_AGENT'] , $data_nt_ver); if ( !( (float)$data_msie_ver[1]>=6 &#038;&#038; (float)$data_msie_ver[1]]]></description>
		<wfw:commentRss>http://www.monster.com.tw/archives/1670/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>USE Oracle / oci8  with PHP</title>
		<link>http://www.monster.com.tw/archives/657</link>
		<comments>http://www.monster.com.tw/archives/657#comments</comments>
		<pubDate>Thu, 04 Dec 2008 05:17:48 +0000</pubDate>
		<dc:creator>monster</dc:creator>
				<category><![CDATA[Copy_N_Paste]]></category>
		<category><![CDATA[DATABASE]]></category>
		<category><![CDATA[Programming/php]]></category>
		<category><![CDATA[oci8]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.monster.com.tw/?p=657</guid>
		<description><![CDATA[前提環境要先裝好 Oracle instant client , 然後 PHP 要把 instantclient 編譯進去 &#8211;with-oci8=instantclient,/usr/lib/oracle/10.2.0.3/client/lib 這是 sample code $conn = OCILogon('scott', 'scott', '//172.30.0.176/DB1'); $query = 'select * from dept'; $stid = OCIParse($conn, $query); OCIExecute($stid, OCI_DEFAULT); while ($succ = OCIFetchInto($stid, $row)) { foreach ($row as $item) { echo $item." "; } echo "\n"; } OCILogoff($conn); 心得是 1. 建 oracle table [...]]]></description>
		<wfw:commentRss>http://www.monster.com.tw/archives/657/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>範例程式 jQuery /JSON / PHP /json_encode / json_decode sample code</title>
		<link>http://www.monster.com.tw/archives/447</link>
		<comments>http://www.monster.com.tw/archives/447#comments</comments>
		<pubDate>Wed, 17 Sep 2008 13:41:54 +0000</pubDate>
		<dc:creator>monster</dc:creator>
				<category><![CDATA[Programming/javascript]]></category>
		<category><![CDATA[Programming/php]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[json]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[sample]]></category>

		<guid isPermaLink="false">http://www.monster.com.tw/?p=447</guid>
		<description><![CDATA[jQuery : 請參考這篇 : http://jsgears.com/thread-63-1-1.html Microsoft 也提供 video 教學: http://msdn.microsoft.com/zh-tw/asp.net/dd310332.aspx#jQuery $(document).ready( function(){ var data = new Object(); data.hello = "Hello"; data.world = 'World'; data.worked = " it worked "; data.somebool = true; data.array = new Array("he\"ll\"o", '"World"'); var dataString = $.toJSON(data); $.post('phpfile.php', {data: dataString}, function(res){ var obj = $.evalJSON(res); if(obj.somebool === true) $("#result").html(obj.hello + ' [...]]]></description>
		<wfw:commentRss>http://www.monster.com.tw/archives/447/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP 小筆記</title>
		<link>http://www.monster.com.tw/archives/446</link>
		<comments>http://www.monster.com.tw/archives/446#comments</comments>
		<pubDate>Wed, 17 Sep 2008 05:11:01 +0000</pubDate>
		<dc:creator>monster</dc:creator>
				<category><![CDATA[Programming/php]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.monster.com.tw/?p=446</guid>
		<description><![CDATA[[code language='php'] [/code] 這個常數在 CLI mode 下是 cli 在 apache 下跑的話是 apache2handler Share on Facebook]]></description>
		<wfw:commentRss>http://www.monster.com.tw/archives/446/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>opensolaris / Optimized Open Source Software Stack (Cool Stack)</title>
		<link>http://www.monster.com.tw/archives/294</link>
		<comments>http://www.monster.com.tw/archives/294#comments</comments>
		<pubDate>Mon, 04 Aug 2008 07:44:15 +0000</pubDate>
		<dc:creator>monster</dc:creator>
				<category><![CDATA[DATABASE]]></category>
		<category><![CDATA[Exercise]]></category>
		<category><![CDATA[JOB]]></category>
		<category><![CDATA[Network service]]></category>
		<category><![CDATA[Programming/misc]]></category>
		<category><![CDATA[Programming/php]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[System/Linux/Unix*]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://www.monster.com.tw/?p=294</guid>
		<description><![CDATA[看到一個有用的套件 for the Sun Solaris Operating System(TM) http://cooltools.sunsource.net/coolstack/ Cool Stack includes several packages in the SVR4 package format, so you can install just the ones you need. Some of the applications in Cool Stack already ship with Solaris, but these are either older versions and/or not built with full optimization. Further, Cool Stack has been [...]]]></description>
		<wfw:commentRss>http://www.monster.com.tw/archives/294/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>memcache sample code</title>
		<link>http://www.monster.com.tw/archives/284</link>
		<comments>http://www.monster.com.tw/archives/284#comments</comments>
		<pubDate>Wed, 30 Jul 2008 10:20:15 +0000</pubDate>
		<dc:creator>monster</dc:creator>
				<category><![CDATA[Programming/php]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.monster.com.tw/?p=284</guid>
		<description><![CDATA[簡單版的測試 sample code [code language='php'] // filename : memcache.php $memcache = new Memcache; $memcache->addServer('172.20.50.25', 11211); // set 一個值到 memcache $memcache->set('key', time() , MEMCACHE_COMPRESSED, 120); // get 值 $data=$memcache->get('key'); print_r($data); Share on Facebook]]></description>
		<wfw:commentRss>http://www.monster.com.tw/archives/284/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Protected: Senna for mysql install 安裝說明</title>
		<link>http://www.monster.com.tw/archives/212</link>
		<comments>http://www.monster.com.tw/archives/212#comments</comments>
		<pubDate>Wed, 23 Jul 2008 01:56:51 +0000</pubDate>
		<dc:creator>monster</dc:creator>
				<category><![CDATA[DATABASE]]></category>
		<category><![CDATA[Programming/misc]]></category>
		<category><![CDATA[Programming/php]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[System/Linux/Unix*]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[lamp]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[senna]]></category>

		<guid isPermaLink="false">http://www.monster.com.tw/?p=212</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
		<wfw:commentRss>http://www.monster.com.tw/archives/212/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

