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--EXPECT--
10array(3) {
11  [0]=>
12  string(1) ","
13  [1]=>
14  string(1) """
15  [2]=>
16  string(0) ""
17}
18