1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 00:32:23 +01:00
Files
archived-php-src/ext/spl/tests/SplFileObject_getCsvControl_basic_001.phpt
Gabriel Caruso 4aabfe911e Revert "Update versions for PHP 8.0.21"
This reverts commit 6eedacdf15.
2022-07-06 12:06:48 +02:00

18 lines
274 B
PHP

--TEST--
SplFileObject::getCsvControl function - basic test
--FILE--
<?php
$obj = New SplFileObject(__DIR__.'/SplFileObject_testinput.csv');
var_dump($obj->getCsvControl());
?>
--EXPECT--
array(3) {
[0]=>
string(1) ","
[1]=>
string(1) """
[2]=>
string(1) "\"
}