<?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: Solving time difference between hosting server and local timezone in PHP</title>
	<atom:link href="http://roshanbh.com.np/2008/04/time-difference-hosting-server-local-time-php.html/feed" rel="self" type="application/rss+xml" />
	<link>http://roshanbh.com.np/2008/04/time-difference-hosting-server-local-time-php.html</link>
	<description>Useful Tutorials, Scripts , Tips, and Resources for all PHP and Ajax beginners and experts .</description>
	<lastBuildDate>Mon, 07 May 2012 21:11:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Parag chaure</title>
		<link>http://roshanbh.com.np/2008/04/time-difference-hosting-server-local-time-php.html/comment-page-1#comment-5568</link>
		<dc:creator>Parag chaure</dc:creator>
		<pubDate>Fri, 30 Jul 2010 11:38:52 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/2008/04/time-difference-hosting-server-local-time-php.html#comment-5568</guid>
		<description>This is good, but for this we have to know the proper standard GMT, It will better for set the time zone by using  date_default_timezone_set() function   date_default_timezone_set(America/Los_Angeles);</description>
		<content:encoded><![CDATA[<p>This is good, but for this we have to know the proper standard GMT, It will better for set the time zone by using  date_default_timezone_set() function   date_default_timezone_set(America/Los_Angeles);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: track</title>
		<link>http://roshanbh.com.np/2008/04/time-difference-hosting-server-local-time-php.html/comment-page-1#comment-5381</link>
		<dc:creator>track</dc:creator>
		<pubDate>Thu, 22 Apr 2010 01:42:58 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/2008/04/time-difference-hosting-server-local-time-php.html#comment-5381</guid>
		<description>good thread</description>
		<content:encoded><![CDATA[<p>good thread</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chand</title>
		<link>http://roshanbh.com.np/2008/04/time-difference-hosting-server-local-time-php.html/comment-page-1#comment-3612</link>
		<dc:creator>Chand</dc:creator>
		<pubDate>Wed, 25 Feb 2009 19:13:39 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/2008/04/time-difference-hosting-server-local-time-php.html#comment-3612</guid>
		<description>Nice help</description>
		<content:encoded><![CDATA[<p>Nice help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Seth</title>
		<link>http://roshanbh.com.np/2008/04/time-difference-hosting-server-local-time-php.html/comment-page-1#comment-1974</link>
		<dc:creator>Seth</dc:creator>
		<pubDate>Fri, 22 Aug 2008 04:38:30 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/2008/04/time-difference-hosting-server-local-time-php.html#comment-1974</guid>
		<description>Sweet! Thanks alot!</description>
		<content:encoded><![CDATA[<p>Sweet! Thanks alot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roshan</title>
		<link>http://roshanbh.com.np/2008/04/time-difference-hosting-server-local-time-php.html/comment-page-1#comment-663</link>
		<dc:creator>Roshan</dc:creator>
		<pubDate>Mon, 21 Apr 2008 07:04:03 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/2008/04/time-difference-hosting-server-local-time-php.html#comment-663</guid>
		<description>Zaft, I agree with you this is a bit long process but reliable one. 

There are lots of problem with &quot;TZ&quot; environment variable check this
http://www.php.net/putenv

And, even sometime the format of the &quot;TZ&quot; varible ma y vary into various UNIX system. And furthermore, you can only use those &quot;TZ&quot; variables which are defined in your particular system, it may or may not work with the other system</description>
		<content:encoded><![CDATA[<p>Zaft, I agree with you this is a bit long process but reliable one. </p>
<p>There are lots of problem with &#8220;TZ&#8221; environment variable check this<br />
<a href="http://www.php.net/putenv" rel="nofollow">http://www.php.net/putenv</a></p>
<p>And, even sometime the format of the &#8220;TZ&#8221; varible ma y vary into various UNIX system. And furthermore, you can only use those &#8220;TZ&#8221; variables which are defined in your particular system, it may or may not work with the other system</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ZafT</title>
		<link>http://roshanbh.com.np/2008/04/time-difference-hosting-server-local-time-php.html/comment-page-1#comment-662</link>
		<dc:creator>ZafT</dc:creator>
		<pubDate>Mon, 21 Apr 2008 04:45:21 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/2008/04/time-difference-hosting-server-local-time-php.html#comment-662</guid>
		<description>Why not just use
putenv(&#039;TZ=America/Los_Angeles&#039;);
to change the timezone?  

Your solution is a bit too much for the problem.

Z</description>
		<content:encoded><![CDATA[<p>Why not just use<br />
putenv(&#8216;TZ=America/Los_Angeles&#8217;);<br />
to change the timezone?  </p>
<p>Your solution is a bit too much for the problem.</p>
<p>Z</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PHP Coding School &#187; Blog Archive &#187; php tips [2008-04-14 15:12:57]</title>
		<link>http://roshanbh.com.np/2008/04/time-difference-hosting-server-local-time-php.html/comment-page-1#comment-625</link>
		<dc:creator>PHP Coding School &#187; Blog Archive &#187; php tips [2008-04-14 15:12:57]</dc:creator>
		<pubDate>Mon, 14 Apr 2008 15:22:20 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/2008/04/time-difference-hosting-server-local-time-php.html#comment-625</guid>
		<description>[...]  Solving time difference between hosting server and local timezone &#8230;  By Roshan  I think this is one of the common problem you&#8217;ll face while you&#8217;re working for the website of a particular country and web server is located in another different country. If client have the dedicated server then you won&#8217;t face this &#8230;   Roshan Bhattarai&#8217;s Blog - PHP&#8230; - http://roshanbh.com.np [...]</description>
		<content:encoded><![CDATA[<p>[...]  Solving time difference between hosting server and local timezone &#8230;  By Roshan  I think this is one of the common problem you&rsquo;ll face while you&rsquo;re working for the website of a particular country and web server is located in another different country. If client have the dedicated server then you won&rsquo;t face this &#8230;   Roshan Bhattarai&#8217;s Blog &#8211; PHP&#8230; &#8211; <a href="http://roshanbh.com.np" rel="nofollow">http://roshanbh.com.np</a> [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 2/13 queries in 0.020 seconds using disk: basic
Object Caching 290/292 objects using disk: basic

Served from: roshanbh.com.np @ 2012-05-17 06:51:38 -->
