Fix file clash in fgetcsv test

This commit is contained in:
Nikita Popov 2019-06-17 17:25:43 +02:00
parent e58e2fd0d4
commit d924b426c9

View file

@ -2,7 +2,7 @@
Bug #53848 (fgetcsv removes leading spaces from fields)
--FILE--
<?php
$file = __DIR__ . "/bug39538.csv";
$file = __DIR__ . "/bug53848.csv";
@unlink($file);
file_put_contents($file, "a,b\n c, d");
$fp = fopen($file, "r");