本文整理汇总了PHP中QuickBooks_Utilities::mysqlTZToPHPTZ方法的典型用法代码示例。如果您正苦于以下问题:PHP QuickBooks_Utilities::mysqlTZToPHPTZ方法的具体用法?PHP QuickBooks_Utilities::mysqlTZToPHPTZ怎么用?PHP QuickBooks_Utilities::mysqlTZToPHPTZ使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类QuickBooks_Utilities
的用法示例。
在下文中一共展示了QuickBooks_Utilities::mysqlTZToPHPTZ方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: compareQBTimeToSQLTime
/**
* Compares a time reported from QuickBooks to a mysql datetime field
* Ex: QB Time: 2009-01-23T08:33:56-05:00
* SQL Time: 2009-01-23 08:31:11
*
* @deprecated This needs to be moved to a driver class!
*
* Returns -1 if QB Time is Smaller
* Returns 0 if Times are Equal
* Returns 1 if QB Time is Greater
* Returns FALSE on Error
*/
public static function compareQBTimeToSQLTime($QBTime, $SQLTime)
{
$SQLTime = QuickBooks_Utilities::mysqlTZToPHPTZ($SQLTime);
$tempTime = explode(" ", $SQLTime);
$mysqlTime = explode(":", $tempTime[1]);
$tempTime = explode("-", $tempTime[0]);
$mysql_t = mktime($mysqlTime[0], $mysqlTime[1], $mysqlTime[2], $tempTime[1], $tempTime[2], $tempTime[0], 0);
$QBTime = strtotime($QBTime);
//mail("grgisme@gmail.com","QBTime","QBTime: ".($QBTime)."\n\n\nSQLTime: ".$mysql_t."\n\n\n".$SQLTime."\n\n\nDaylight Savings?: ".date('I'));
if ($QBTime < $mysql_t) {
return -1;
} elseif ($QBTime > $mysql_t) {
return 1;
} else {
return 0;
}
}