public static function PHPExcel_Shared_String::buildCharacterSets in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/String.php \PHPExcel_Shared_String::buildCharacterSets()
1 call to PHPExcel_Shared_String::buildCharacterSets()
- Autoloader.php in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Autoloader.php
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Shared/ String.php, line 332
Class
- PHPExcel_Shared_String
- PHPExcel_Shared_String
Code
public static function buildCharacterSets() {
if (empty(self::$_controlCharacters)) {
self::_buildControlCharacters();
}
if (empty(self::$_SYLKCharacters)) {
self::_buildSYLKCharacters();
}
}