You are here

public static function PHPExcel_Calculation_Engineering::OCTTODEC in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Engineering.php \PHPExcel_Calculation_Engineering::OCTTODEC()

* OCTTODEC * * Return an octal value as decimal. * * Excel Function: * OCT2DEC(x) * * @access public * @category Engineering Functions *

Parameters

string $x The octal number you want to convert. Number may not contain: * more than 10 octal characters (30 bits). The most significant * bit of number is the sign bit. The remaining 29 bits are * magnitude bits. Negative numbers are represented using * two's-complement notation. * If number is not a valid octal number, OCT2DEC returns the * #NUM! error value. * @return string

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Engineering.php, line 1564

Class

PHPExcel_Calculation_Engineering
PHPExcel_Calculation_Engineering

Code

public static function OCTTODEC($x) {
  $x = PHPExcel_Calculation_Functions::flattenSingleValue($x);
  if (is_bool($x)) {
    return PHPExcel_Calculation_Functions::VALUE();
  }
  $x = (string) $x;
  if (preg_match_all('/[01234567]/', $x, $out) != strlen($x)) {
    return PHPExcel_Calculation_Functions::NaN();
  }
  return octdec($x);
}