public function PHPExcel_Writer_CSV::setLineEnding in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/CSV.php \PHPExcel_Writer_CSV::setLineEnding()
* Set line ending * *
Parameters
string $pValue Line ending, defaults to OS line ending (PHP_EOL): * @return PHPExcel_Writer_CSV
1 call to PHPExcel_Writer_CSV::setLineEnding()
- PHPExcel_Writer_CSV::save in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Writer/ CSV.php - * Save PHPExcel to file * *
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Writer/ CSV.php, line 204
Class
- PHPExcel_Writer_CSV
- PHPExcel_Writer_CSV
Code
public function setLineEnding($pValue = PHP_EOL) {
$this->_lineEnding = $pValue;
return $this;
}