blob: e21f08fa2de74c094cf561245c6f5023232f420e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--TEST--
SplFileObject::getCsvControl function - basic test
--FILE--
<?php
$obj = New SplFileObject(dirname(__FILE__).'/SplFileObject_testinput.csv');
var_dump($obj->getCsvControl());
?>
--EXPECTF--
array(2) {
[0]=>
%unicode|string%(1) ","
[1]=>
%unicode|string%(1) """
}
|