<?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>Comments on: php v5.1.* 時區設定抓取 GMT+800</title>
	<atom:link href="http://ria.richtechmedia.com/2006/04/07/php-v51-%e6%99%82%e5%8d%80%e8%a8%ad%e5%ae%9a%e6%8a%93%e5%8f%96-gmt800/feed/" rel="self" type="application/rss+xml" />
	<link>http://ria.richtechmedia.com/2006/04/07/php-v51-%e6%99%82%e5%8d%80%e8%a8%ad%e5%ae%9a%e6%8a%93%e5%8f%96-gmt800/</link>
	<description>a dedicated Flash&#124;Flex Rich Internet Application Blog from a senior Flex RIA developer/instructor</description>
	<lastBuildDate>Thu, 17 Nov 2011 14:57:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: test</title>
		<link>http://ria.richtechmedia.com/2006/04/07/php-v51-%e6%99%82%e5%8d%80%e8%a8%ad%e5%ae%9a%e6%8a%93%e5%8f%96-gmt800/comment-page-1/#comment-189050</link>
		<dc:creator>test</dc:creator>
		<pubDate>Tue, 12 Oct 2010 07:33:34 +0000</pubDate>
		<guid isPermaLink="false">http://ria.richtechmedia.com/2006/04/07/php-v51-%e6%99%82%e5%8d%80%e8%a8%ad%e5%ae%9a%e6%8a%93%e5%8f%96-gmt800/#comment-189050</guid>
		<description>如果遇到無法設定php.ini的情況下，這個方法就無法使用了。
將需要調用的時間，直接寫成變數或函式吧

$useDate = date (&quot;Y-m-d &quot;,mktime(date(&quot;G&quot;)+8,date(&quot;i&quot;),date(&quot;s&quot;),date(&quot;m&quot;),date(&quot;d&quot;),date(&quot;Y&quot;)));</description>
		<content:encoded><![CDATA[<p>如果遇到無法設定php.ini的情況下，這個方法就無法使用了。<br />
將需要調用的時間，直接寫成變數或函式吧</p>
<p>$useDate = date (&#8220;Y-m-d &#8220;,mktime(date(&#8220;G&#8221;)+8,date(&#8220;i&#8221;),date(&#8220;s&#8221;),date(&#8220;m&#8221;),date(&#8220;d&#8221;),date(&#8220;Y&#8221;)));</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: owl016</title>
		<link>http://ria.richtechmedia.com/2006/04/07/php-v51-%e6%99%82%e5%8d%80%e8%a8%ad%e5%ae%9a%e6%8a%93%e5%8f%96-gmt800/comment-page-1/#comment-46911</link>
		<dc:creator>owl016</dc:creator>
		<pubDate>Wed, 05 Dec 2007 07:16:10 +0000</pubDate>
		<guid isPermaLink="false">http://ria.richtechmedia.com/2006/04/07/php-v51-%e6%99%82%e5%8d%80%e8%a8%ad%e5%ae%9a%e6%8a%93%e5%8f%96-gmt800/#comment-46911</guid>
		<description>拍謝，這個程式有防隱碼作用
雙引號和單引號都被拿掉了
自己把全型的引號變換就可以了

date_default_timezone_set(“Asia/Taipei”);
echo date(‘Y/m/d  h:i:s’);</description>
		<content:encoded><![CDATA[<p>拍謝，這個程式有防隱碼作用<br />
雙引號和單引號都被拿掉了<br />
自己把全型的引號變換就可以了</p>
<p>date_default_timezone_set(“Asia/Taipei”);<br />
echo date(‘Y/m/d  h:i:s’);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: owl016</title>
		<link>http://ria.richtechmedia.com/2006/04/07/php-v51-%e6%99%82%e5%8d%80%e8%a8%ad%e5%ae%9a%e6%8a%93%e5%8f%96-gmt800/comment-page-1/#comment-46910</link>
		<dc:creator>owl016</dc:creator>
		<pubDate>Wed, 05 Dec 2007 07:13:23 +0000</pubDate>
		<guid isPermaLink="false">http://ria.richtechmedia.com/2006/04/07/php-v51-%e6%99%82%e5%8d%80%e8%a8%ad%e5%ae%9a%e6%8a%93%e5%8f%96-gmt800/#comment-46910</guid>
		<description>我也遇到這種問題歐
我試過了
原來是要用兩個地方

1. 去更改 php.ini 裡面的設定
   [Date]
    date.timezone = Asia//Taipei

2. 另外一個設定不在php.ini裡面歐
   是要使用者自己加到要處理的PHP頁面裡面的
   比如：
   
   現在伺服器的時間為：
   

這樣就可以顯示正常時間了</description>
		<content:encoded><![CDATA[<p>我也遇到這種問題歐<br />
我試過了<br />
原來是要用兩個地方</p>
<p>1. 去更改 php.ini 裡面的設定<br />
   [Date]<br />
    date.timezone = Asia//Taipei</p>
<p>2. 另外一個設定不在php.ini裡面歐<br />
   是要使用者自己加到要處理的PHP頁面裡面的<br />
   比如：</p>
<p>   現在伺服器的時間為：</p>
<p>這樣就可以顯示正常時間了</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Poon's Blog</title>
		<link>http://ria.richtechmedia.com/2006/04/07/php-v51-%e6%99%82%e5%8d%80%e8%a8%ad%e5%ae%9a%e6%8a%93%e5%8f%96-gmt800/comment-page-1/#comment-41882</link>
		<dc:creator>Poon's Blog</dc:creator>
		<pubDate>Fri, 26 Oct 2007 01:38:33 +0000</pubDate>
		<guid isPermaLink="false">http://ria.richtechmedia.com/2006/04/07/php-v51-%e6%99%82%e5%8d%80%e8%a8%ad%e5%ae%9a%e6%8a%93%e5%8f%96-gmt800/#comment-41882</guid>
		<description>[...] v5.1.* 時區設定抓取 GMT+800  php v5.1.* 時區設定抓取 GMT+800In php/mysql   April 7, 2006 - 9:38 [...]</description>
		<content:encoded><![CDATA[<p>[...] v5.1.* 時區設定抓取 GMT+800  php v5.1.* 時區設定抓取 GMT+800In php/mysql   April 7, 2006 &#8211; 9:38 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://ria.richtechmedia.com/2006/04/07/php-v51-%e6%99%82%e5%8d%80%e8%a8%ad%e5%ae%9a%e6%8a%93%e5%8f%96-gmt800/comment-page-1/#comment-30097</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Sat, 23 Jun 2007 04:48:31 +0000</pubDate>
		<guid isPermaLink="false">http://ria.richtechmedia.com/2006/04/07/php-v51-%e6%99%82%e5%8d%80%e8%a8%ad%e5%ae%9a%e6%8a%93%e5%8f%96-gmt800/#comment-30097</guid>
		<description>Thanks for this article, it was very useful for me.</description>
		<content:encoded><![CDATA[<p>Thanks for this article, it was very useful for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jerry</title>
		<link>http://ria.richtechmedia.com/2006/04/07/php-v51-%e6%99%82%e5%8d%80%e8%a8%ad%e5%ae%9a%e6%8a%93%e5%8f%96-gmt800/comment-page-1/#comment-2892</link>
		<dc:creator>Jerry</dc:creator>
		<pubDate>Wed, 13 Sep 2006 16:08:14 +0000</pubDate>
		<guid isPermaLink="false">http://ria.richtechmedia.com/2006/04/07/php-v51-%e6%99%82%e5%8d%80%e8%a8%ad%e5%ae%9a%e6%8a%93%e5%8f%96-gmt800/#comment-2892</guid>
		<description>你好
我依照上面所說的設定 date.timezone = Asia/Taipei
可是顯示的時間還是不對 
後來所提到的php function 是要在哪裡現在執行, 我不是很了解,可以麻煩你解釋一下ㄇ  謝謝你</description>
		<content:encoded><![CDATA[<p>你好<br />
我依照上面所說的設定 date.timezone = Asia/Taipei<br />
可是顯示的時間還是不對<br />
後來所提到的php function 是要在哪裡現在執行, 我不是很了解,可以麻煩你解釋一下ㄇ  謝謝你</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mm2004mx</title>
		<link>http://ria.richtechmedia.com/2006/04/07/php-v51-%e6%99%82%e5%8d%80%e8%a8%ad%e5%ae%9a%e6%8a%93%e5%8f%96-gmt800/comment-page-1/#comment-1081</link>
		<dc:creator>mm2004mx</dc:creator>
		<pubDate>Sat, 08 Apr 2006 05:22:59 +0000</pubDate>
		<guid isPermaLink="false">http://ria.richtechmedia.com/2006/04/07/php-v51-%e6%99%82%e5%8d%80%e8%a8%ad%e5%ae%9a%e6%8a%93%e5%8f%96-gmt800/#comment-1081</guid>
		<description>谢谢你的回答</description>
		<content:encoded><![CDATA[<p>谢谢你的回答</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeremy</title>
		<link>http://ria.richtechmedia.com/2006/04/07/php-v51-%e6%99%82%e5%8d%80%e8%a8%ad%e5%ae%9a%e6%8a%93%e5%8f%96-gmt800/comment-page-1/#comment-1079</link>
		<dc:creator>jeremy</dc:creator>
		<pubDate>Fri, 07 Apr 2006 09:04:15 +0000</pubDate>
		<guid isPermaLink="false">http://ria.richtechmedia.com/2006/04/07/php-v51-%e6%99%82%e5%8d%80%e8%a8%ad%e5%ae%9a%e6%8a%93%e5%8f%96-gmt800/#comment-1079</guid>
		<description>如果你開啟的檔案副檔名是 xxx.js 的話，primalscript 應該會自動辨認出來。

如果是開新的文件，就要在 file &gt; 下面選 web &gt; javascript 這樣建立的新文件就是 javascript格式。

至於 windows script 我也沒在用，幫不上忙 :)</description>
		<content:encoded><![CDATA[<p>如果你開啟的檔案副檔名是 xxx.js 的話，primalscript 應該會自動辨認出來。</p>
<p>如果是開新的文件，就要在 file > 下面選 web > javascript 這樣建立的新文件就是 javascript格式。</p>
<p>至於 windows script 我也沒在用，幫不上忙 <img src='http://ria.richtechmedia.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mm2004mx</title>
		<link>http://ria.richtechmedia.com/2006/04/07/php-v51-%e6%99%82%e5%8d%80%e8%a8%ad%e5%ae%9a%e6%8a%93%e5%8f%96-gmt800/comment-page-1/#comment-1078</link>
		<dc:creator>mm2004mx</dc:creator>
		<pubDate>Fri, 07 Apr 2006 05:38:29 +0000</pubDate>
		<guid isPermaLink="false">http://ria.richtechmedia.com/2006/04/07/php-v51-%e6%99%82%e5%8d%80%e8%a8%ad%e5%ae%9a%e6%8a%93%e5%8f%96-gmt800/#comment-1078</guid>
		<description>我想请问下怎么使用PrimalScript编辑调试javascript代码?我的PrimalScript老是提示我对象未定义,还有就是windows cscript不能启动,请问该如何解决?谢谢</description>
		<content:encoded><![CDATA[<p>我想请问下怎么使用PrimalScript编辑调试javascript代码?我的PrimalScript老是提示我对象未定义,还有就是windows cscript不能启动,请问该如何解决?谢谢</p>
]]></content:encoded>
	</item>
</channel>
</rss>

