blob: b94def684a8c6bbc8d8b72a23a97239b422561d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
--TEST--
chgrp() with NULL as group name
--SKIPIF--
<?php
if(substr(PHP_OS, 0, 3) == "WIN")
die("skip, not supported on Windows");
?>
--FILE--
<?php
try {
chgrp("sjhgfskhagkfdgskjfhgskfsdgfkdsajf", null);
} catch (TypeError $exception) {
echo $exception->getMessage() . "\n";
}
?>
--EXPECTF--
Warning: chgrp(): No such file or directory in %s on line %d
|