1--TEST--
2SplFileObject::setCsvControl() and ::getCsvControl() with empty $escape
3--FILE--
4<?php
5$file = new SplTempFileObject;
6$file->setCsvControl(',', '"', '');
7var_dump($file->getCsvControl());
8?>
9===DONE===
10--EXPECT--
11array(3) {
12  [0]=>
13  string(1) ","
14  [1]=>
15  string(1) """
16  [2]=>
17  string(0) ""
18}
19===DONE===
20