mirror of
https://github.com/php/php-src.git
synced 2024-12-21 16:00:18 +08:00
Merge branch 'PHP-7.1' into PHP-7.2
* PHP-7.1: Improve cleanup
This commit is contained in:
commit
0872e80dd8
@ -12,7 +12,11 @@ function _test() { return 42; }
|
||||
$db->sqliteCreateFunction('test', '_test', 0);
|
||||
print("Everything is fine, no exceptions here\n");
|
||||
unset($db);
|
||||
@unlink($dbfile);
|
||||
?>
|
||||
--CLEAN--
|
||||
<?php
|
||||
$dbfile = __DIR__ . '/test.sqlite';
|
||||
unlink($dbfile);
|
||||
?>
|
||||
--EXPECT--
|
||||
Everything is fine, no exceptions here
|
||||
|
Loading…
Reference in New Issue
Block a user