ILIAS  release_5-2 Revision v5.2.25-18-g3f80b82851
AdvancedValueBinder.php
Go to the documentation of this file.
1 <?php
30 if (!defined('PHPEXCEL_ROOT')) {
34  define('PHPEXCEL_ROOT', dirname(__FILE__) . '/../../');
35  require(PHPEXCEL_ROOT . 'PHPExcel/Autoloader.php');
36 }
37 
38 
47 {
55  public function bindValue(PHPExcel_Cell $cell, $value = null)
56  {
57  // sanitize UTF-8 strings
58  if (is_string($value)) {
59  $value = PHPExcel_Shared_String::SanitizeUTF8($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
115  $currencyCode = PHPExcel_Shared_String::getCurrencyCode();
116  $decimalSeparator = PHPExcel_Shared_String::getDecimalSeparator();
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) {
180  $value = PHPExcel_Shared_String::SanitizeUTF8($value);
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  }
192 }
static getCurrencyCode()
Get the currency code.
Definition: String.php:751
static getTRUE()
Return the locale-specific translation of TRUE.
$h
static getThousandsSeparator()
Get the thousands separator.
Definition: String.php:719
for($col=0; $col< 50; $col++) $d
static getFALSE()
Return the locale-specific translation of FALSE.
getCoordinate()
Get cell coordinate.
Definition: Cell.php:171
bindValue(PHPExcel_Cell $cell, $value=null)
Bind value to a cell.
static stringToExcel($dateValue='')
Convert a date/time string to Excel time.
Definition: Date.php:350
Create styles array
The data for the language used.
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
static getDecimalSeparator()
Get the decimal separator.
Definition: String.php:687
defined( 'APPLICATION_ENV')||define( 'APPLICATION_ENV'
Definition: bootstrap.php:27
static SanitizeUTF8($value)
Try to sanitize UTF8, stripping invalid byte sequences.
Definition: String.php:383
getWorksheet()
Get parent worksheet.
Definition: Cell.php:488
const CALCULATION_REGEXP_NUMBER
Constants.
Definition: Calculation.php:67