You are here

private static function PHPExcel_Calculation_DateTime::_getTimeValue in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/DateTime.php \PHPExcel_Calculation_DateTime::_getTimeValue()

* _getTimeValue * *

Parameters

string $timeValue: * @return mixed Excel date/time serial value, or string if error

3 calls to PHPExcel_Calculation_DateTime::_getTimeValue()
PHPExcel_Calculation_DateTime::HOUROFDAY in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/DateTime.php
* HOUROFDAY * * Returns the hour of a time value. * The hour is given as an integer, ranging from 0 (12:00 A.M.) to 23 (11:00 P.M.). * * Excel Function: * HOUR(timeValue) * *
PHPExcel_Calculation_DateTime::MINUTEOFHOUR in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/DateTime.php
* MINUTEOFHOUR * * Returns the minutes of a time value. * The minute is given as an integer, ranging from 0 to 59. * * Excel Function: * MINUTE(timeValue) * *
PHPExcel_Calculation_DateTime::SECONDOFMINUTE in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/DateTime.php
* SECONDOFMINUTE * * Returns the seconds of a time value. * The second is given as an integer in the range 0 (zero) to 59. * * Excel Function: * SECOND(timeValue) * *

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/DateTime.php, line 126

Class

PHPExcel_Calculation_DateTime
PHPExcel_Calculation_DateTime

Code

private static function _getTimeValue($timeValue) {
  $saveReturnDateType = PHPExcel_Calculation_Functions::getReturnDateType();
  PHPExcel_Calculation_Functions::setReturnDateType(PHPExcel_Calculation_Functions::RETURNDATE_EXCEL);
  $timeValue = self::TIMEVALUE($timeValue);
  PHPExcel_Calculation_Functions::setReturnDateType($saveReturnDateType);
  return $timeValue;
}