php-src/ext/standard/tests/file/touch_error.phpt
2019-03-11 11:32:20 +01:00

13 lines
284 B
PHP

--TEST--
touch() error tests
--CREDITS--
Dave Kelsey <d_kelsey@uk.ibm.com>
--FILE--
<?php
var_dump(touch("/no/such/file/or/directory"));
?>
--EXPECTF--
Warning: touch(): Unable to create file /no/such/file/or/directory because No such file or directory in %s on line %d
bool(false)