From: Antony Dovgal Date: Mon, 4 Jun 2007 17:18:28 +0000 (+0000) Subject: clean up temp file X-Git-Tag: BEFORE_IMPORT_OF_MYSQLND~537 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b90fc7e0e4952cb8d7bd087f5f586eda58c92614;p=php clean up temp file --- diff --git a/ext/standard/tests/general_functions/bug41518.phpt b/ext/standard/tests/general_functions/bug41518.phpt index c15cae1212..675b82ccac 100644 --- a/ext/standard/tests/general_functions/bug41518.phpt +++ b/ext/standard/tests/general_functions/bug41518.phpt @@ -20,6 +20,8 @@ touch($tmp_file); var_dump(file_exists($tmp_file)); //exists var_dump(file_exists($tmp_file."nosuchfile")); //doesn't exist +@unlink($tmp_file); + echo "Done\n"; ?> --EXPECTF--