blob: 5791c04c9b297de2d17fa6ce681d86d3666040cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--TEST--
chown() with NULL as user name
--SKIPIF--
<?php
if(substr(PHP_OS, 0, 3) == "WIN")
die("skip, not supported on Windows");
?>
--FILE--
<?php
chown("sjhgfskhagkfdgskjfhgskfsdgfkdsajf", 0);
echo "ALIVE\n";
?>
--EXPECTF--
Warning: chown(): No such file or directory in %s on line %d
ALIVE
|