1--TEST--
2Test posix_strerror() function : error conditions
3--EXTENSIONS--
4posix
5--FILE--
6<?php
7echo "*** Testing posix_strerror() : error conditions ***\n";
8
9echo "\n-- Testing posix_strerror() function with invalid error number --\n";
10$errno = -999;
11echo gettype( posix_strerror($errno) )."\n";
12
13echo "Done";
14?>
15--EXPECT--
16*** Testing posix_strerror() : error conditions ***
17
18-- Testing posix_strerror() function with invalid error number --
19string
20Done
21