mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01:00
Remove most of the `===DONE===` tags and its variations. Keep `===DONE===` if the test output otherwise becomes empty. Closes GH-4872.
18 lines
295 B
PHP
18 lines
295 B
PHP
--TEST--
|
|
SplFileObject::setCsvControl() and ::getCsvControl() with empty $escape
|
|
--FILE--
|
|
<?php
|
|
$file = new SplTempFileObject;
|
|
$file->setCsvControl(',', '"', '');
|
|
var_dump($file->getCsvControl());
|
|
?>
|
|
--EXPECT--
|
|
array(3) {
|
|
[0]=>
|
|
string(1) ","
|
|
[1]=>
|
|
string(1) """
|
|
[2]=>
|
|
string(0) ""
|
|
}
|