1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 10:16:41 +02:00
Files
archived-php-src/ext/standard/tests/general_functions/004.phpt
T
2004-05-19 08:56:50 +00:00

17 lines
290 B
PHP

--TEST--
fgetcsv() with tab delimited fields (BUG #8258)
--FILE--
<?php
chdir(dirname(__FILE__));
$fp=fopen("004.data","r");
while($a=fgetcsv($fp,100,"\t")) {
echo join(",",$a)."\n";
}
fclose($fp);
?>
--EXPECT--
name,value,comment
true,1,boolean true
false,0,boolean false
empty,,nothing