public static function PHPExcel_Calculation_Functions::IS_TEXT in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Functions.php \PHPExcel_Calculation_Functions::IS_TEXT()
* IS_TEXT * *
Parameters
mixed $value Value to check: * @return boolean
1 call to PHPExcel_Calculation_Functions::IS_TEXT()
- PHPExcel_Calculation_Functions::IS_NONTEXT in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Calculation/ Functions.php - * IS_NONTEXT * *
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Calculation/ Functions.php, line 475
Class
- PHPExcel_Calculation_Functions
- PHPExcel_Calculation_Functions
Code
public static function IS_TEXT($value = NULL) {
$value = self::flattenSingleValue($value);
return is_string($value) && !self::IS_ERROR($value);
}