public static function PHPExcel_Shared_String::setThousandsSeparator 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::setThousandsSeparator()
* Set the thousands separator. Only used by PHPExcel_Style_NumberFormat::toFormattedString() * to format output by PHPExcel_Writer_HTML and PHPExcel_Writer_PDF * *
Parameters
string $pValue Character for thousands separator:
2 calls to PHPExcel_Shared_String::setThousandsSeparator()
- AdvancedValueBinderTest::testCurrency in vendor/
phpoffice/ phpexcel/ unitTests/ Classes/ PHPExcel/ Cell/ AdvancedValueBinderTest.php - @dataProvider provider
- NumberFormatTest::setUp in vendor/
phpoffice/ phpexcel/ unitTests/ Classes/ PHPExcel/ Style/ NumberFormatTest.php
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Shared/ String.php, line 740
Class
- PHPExcel_Shared_String
- PHPExcel_Shared_String
Code
public static function setThousandsSeparator($pValue = ',') {
self::$_thousandsSeparator = $pValue;
}