summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/touch_error.phpt
blob: 9a4bd01e13d5f1ff74081b765977b2add33fb092 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--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)