Thanks, but add e to date, but get this result:
Code: date("D M j Y e",1079712000)
Output: Fri Mar 19 2004 e
Code: date("D M j Y",1079712000)
Output: Fri Mar 19 2004
I check PHP Mannual, not found the e format.
I also try
echo strftime ( "%a %b %d %G " ,1079712000);
the same result: Fri Mar 19 2004.
On the other server's output still is: Fri Mar 20 2004.
I think the reason is the servers have diff timezone settings. Anyway thanks guys!