ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
PHPExcel_Cell_AdvancedValueBinder Class Reference
+ Inheritance diagram for PHPExcel_Cell_AdvancedValueBinder:
+ Collaboration diagram for PHPExcel_Cell_AdvancedValueBinder:

Public Member Functions

 bindValue (PHPExcel_Cell $cell, $value=null)
 Bind value to a cell. More...
 
 bindValue (PHPExcel_Cell $cell, $value=null)
 Bind value to a cell. More...
 
 bindValue (PHPExcel_Cell $cell, $value=NULL)
 Bind value to a cell. More...
 

Additional Inherited Members

- Static Public Member Functions inherited from PHPExcel_Cell_DefaultValueBinder
static dataTypeForValue ($pValue=null)
 DataType for value. More...
 

Detailed Description

Definition at line 46 of file AdvancedValueBinder.php.

Member Function Documentation

◆ bindValue()

PHPExcel_Cell_AdvancedValueBinder::bindValue ( PHPExcel_Cell  $cell,
  $value = null 
)

Bind value to a cell.

Parameters
PHPExcel_Cell$cellCell to bind value to
mixed$valueValue to bind in cell
Returns
boolean

Reimplemented from PHPExcel_Cell_DefaultValueBinder.

Definition at line 55 of file AdvancedValueBinder.php.

56 {
57 // sanitize UTF-8 strings
58 if (is_string($value)) {
60 }
61
62 // Find out data type
63 $dataType = parent::dataTypeForValue($value);
64
65 // Style logic - strings
66 if ($dataType === PHPExcel_Cell_DataType::TYPE_STRING && !$value instanceof PHPExcel_RichText) {
67 // Test for booleans using locale-setting
68 if ($value == PHPExcel_Calculation::getTRUE()) {
70 return true;
71 } elseif($value == PHPExcel_Calculation::getFALSE()) {
73 return true;
74 }
75
76 // Check for number in scientific format
77 if (preg_match('/^'.PHPExcel_Calculation::CALCULATION_REGEXP_NUMBER.'$/', $value)) {
79 return true;
80 }
81
82 // Check for fraction
83 if (preg_match('/^([+-]?)\s*([0-9]+)\s?\/\s*([0-9]+)$/', $value, $matches)) {
84 // Convert value to number
85 $value = $matches[2] / $matches[3];
86 if ($matches[1] == '-') $value = 0 - $value;
88 // Set style
89 $cell->getWorksheet()->getStyle( $cell->getCoordinate() )
90 ->getNumberFormat()->setFormatCode( '??/??' );
91 return true;
92 } elseif (preg_match('/^([+-]?)([0-9]*) +([0-9]*)\s?\/\s*([0-9]*)$/', $value, $matches)) {
93 // Convert value to number
94 $value = $matches[2] + ($matches[3] / $matches[4]);
95 if ($matches[1] == '-') $value = 0 - $value;
97 // Set style
98 $cell->getWorksheet()->getStyle( $cell->getCoordinate() )
99 ->getNumberFormat()->setFormatCode( '# ??/??' );
100 return true;
101 }
102
103 // Check for percentage
104 if (preg_match('/^\-?[0-9]*\.?[0-9]*\s?\%$/', $value)) {
105 // Convert value to number
106 $value = (float) str_replace('%', '', $value) / 100;
108 // Set style
109 $cell->getWorksheet()->getStyle( $cell->getCoordinate() )
110 ->getNumberFormat()->setFormatCode( PHPExcel_Style_NumberFormat::FORMAT_PERCENTAGE_00 );
111 return true;
112 }
113
114 // Check for currency
117 $thousandsSeparator = PHPExcel_Shared_String::getThousandsSeparator();
118 if (preg_match('/^'.preg_quote($currencyCode).' *(\d{1,3}('.preg_quote($thousandsSeparator).'\d{3})*|(\d+))('.preg_quote($decimalSeparator).'\d{2})?$/', $value)) {
119 // Convert value to number
120 $value = (float) trim(str_replace(array($currencyCode, $thousandsSeparator, $decimalSeparator), array('', '', '.'), $value));
122 // Set style
123 $cell->getWorksheet()->getStyle( $cell->getCoordinate() )
124 ->getNumberFormat()->setFormatCode(
125 str_replace('$', $currencyCode, PHPExcel_Style_NumberFormat::FORMAT_CURRENCY_USD_SIMPLE )
126 );
127 return true;
128 } elseif (preg_match('/^\$ *(\d{1,3}(\,\d{3})*|(\d+))(\.\d{2})?$/', $value)) {
129 // Convert value to number
130 $value = (float) trim(str_replace(array('$',','), '', $value));
132 // Set style
133 $cell->getWorksheet()->getStyle( $cell->getCoordinate() )
134 ->getNumberFormat()->setFormatCode( PHPExcel_Style_NumberFormat::FORMAT_CURRENCY_USD_SIMPLE );
135 return true;
136 }
137
138 // Check for time without seconds e.g. '9:45', '09:45'
139 if (preg_match('/^(\d|[0-1]\d|2[0-3]):[0-5]\d$/', $value)) {
140 // Convert value to number
141 list($h, $m) = explode(':', $value);
142 $days = $h / 24 + $m / 1440;
144 // Set style
145 $cell->getWorksheet()->getStyle( $cell->getCoordinate() )
146 ->getNumberFormat()->setFormatCode( PHPExcel_Style_NumberFormat::FORMAT_DATE_TIME3 );
147 return true;
148 }
149
150 // Check for time with seconds '9:45:59', '09:45:59'
151 if (preg_match('/^(\d|[0-1]\d|2[0-3]):[0-5]\d:[0-5]\d$/', $value)) {
152 // Convert value to number
153 list($h, $m, $s) = explode(':', $value);
154 $days = $h / 24 + $m / 1440 + $s / 86400;
155 // Convert value to number
157 // Set style
158 $cell->getWorksheet()->getStyle( $cell->getCoordinate() )
159 ->getNumberFormat()->setFormatCode( PHPExcel_Style_NumberFormat::FORMAT_DATE_TIME4 );
160 return true;
161 }
162
163 // Check for datetime, e.g. '2008-12-31', '2008-12-31 15:59', '2008-12-31 15:59:10'
164 if (($d = PHPExcel_Shared_Date::stringToExcel($value)) !== false) {
165 // Convert value to number
167 // Determine style. Either there is a time part or not. Look for ':'
168 if (strpos($value, ':') !== false) {
169 $formatCode = 'yyyy-mm-dd h:mm';
170 } else {
171 $formatCode = 'yyyy-mm-dd';
172 }
173 $cell->getWorksheet()->getStyle( $cell->getCoordinate() )
174 ->getNumberFormat()->setFormatCode($formatCode);
175 return true;
176 }
177
178 // Check for newline character "\n"
179 if (strpos($value, "\n") !== FALSE) {
182 // Set style
183 $cell->getWorksheet()->getStyle( $cell->getCoordinate() )
184 ->getAlignment()->setWrapText(TRUE);
185 return true;
186 }
187 }
188
189 // Not bound yet? Use parent...
190 return parent::bindValue($cell, $value);
191 }
static getFALSE()
Return the locale-specific translation of FALSE.
static getTRUE()
Return the locale-specific translation of TRUE.
const CALCULATION_REGEXP_NUMBER
Constants
Definition: Calculation.php:67
setValueExplicit($pValue=NULL, $pDataType=PHPExcel_Cell_DataType::TYPE_STRING)
Set the value for a cell, with the explicit data type passed to the method (bypassing any use of the ...
Definition: Cell.php:225
getWorksheet()
Get parent worksheet.
Definition: Cell.php:488
getCoordinate()
Get cell coordinate.
Definition: Cell.php:171
static stringToExcel($dateValue='')
Convert a date/time string to Excel time.
Definition: Date.php:350
static getDecimalSeparator()
Get the decimal separator.
Definition: String.php:687
static SanitizeUTF8($value)
Try to sanitize UTF8, stripping invalid byte sequences.
Definition: String.php:383
static getCurrencyCode()
Definition: String.php:751
static getThousandsSeparator()
Get the thousands separator.
Definition: String.php:719
for( $i=6;$i< 13;$i++) for($i=1; $i< 13; $i++) $d
Definition: date.php:296
$h
$s
Definition: pwgen.php:45

References $d, $h, $m, $s, PHPExcel_Calculation\CALCULATION_REGEXP_NUMBER, PHPExcel_Style_NumberFormat\FORMAT_CURRENCY_USD_SIMPLE, PHPExcel_Style_NumberFormat\FORMAT_DATE_TIME3, PHPExcel_Style_NumberFormat\FORMAT_DATE_TIME4, PHPExcel_Style_NumberFormat\FORMAT_PERCENTAGE_00, PHPExcel_Cell\getCoordinate(), PHPExcel_Shared_String\getCurrencyCode(), PHPExcel_Shared_String\getDecimalSeparator(), PHPExcel_Calculation\getFALSE(), PHPExcel_Shared_String\getThousandsSeparator(), PHPExcel_Calculation\getTRUE(), PHPExcel_Cell\getWorksheet(), PHPExcel_Shared_String\SanitizeUTF8(), PHPExcel_Cell\setValueExplicit(), PHPExcel_Shared_Date\stringToExcel(), PHPExcel_Cell_DataType\TYPE_BOOL, PHPExcel_Cell_DataType\TYPE_NUMERIC, and PHPExcel_Cell_DataType\TYPE_STRING.

+ Here is the call graph for this function:

The documentation for this class was generated from the following file: