30 if (!defined(
'PHPEXCEL_ROOT')) {
34 define(
'PHPEXCEL_ROOT', dirname(__FILE__) .
'/../../');
38 require_once PHPEXCEL_ROOT .
'PHPExcel/Cell.php';
41 require_once PHPEXCEL_ROOT .
'PHPExcel/Cell/IValueBinder.php';
44 require_once PHPEXCEL_ROOT .
'PHPExcel/Cell/DataType.php';
47 require_once PHPEXCEL_ROOT .
'PHPExcel/Shared/String.php';
69 if (is_string($value)) {
88 if (is_null($pValue)) {
90 }
elseif ($pValue ===
'') {
94 }
elseif ($pValue{0} ===
'=') {
96 }
elseif (is_bool($pValue)) {
98 }
elseif (is_float($pValue) || is_int($pValue)) {
100 }
elseif (preg_match(
'/^\-?[0-9]*\\.?[0-9]*$/', $pValue)) {