You are here

public function PHPExcel_Writer_CSV::setUseBOM in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/CSV.php \PHPExcel_Writer_CSV::setUseBOM()

* Set whether BOM should be used * *

Parameters

boolean $pValue Use UTF-8 byte-order mark? Defaults to false: * @return PHPExcel_Writer_CSV

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/CSV.php, line 224

Class

PHPExcel_Writer_CSV
PHPExcel_Writer_CSV

Code

public function setUseBOM($pValue = false) {
  $this->_useBOM = $pValue;
  return $this;
}