/**
* PHP北京時間轉太平洋時間的函數
*/
public function PRCToPacific($time=''){
if(empty($time)){
date_default_timezone_set('Asia/Shanghai');
$time = time();
}
date_default_timezone_set('Pacific/Apia');
$date = date('Ymd H:i:s',$time);
$time = strtotime($date);
return $time;
}