2 Test php_uname() function - error conditions - pass function incorrect arguments
5 /* Prototype: string php_uname ([ string $mode ] )
6 * Description: Returns information about the operating system PHP is running on
9 echo "*** Testing php_uname() - error test\n";
11 echo "\n-- Testing php_uname() function with invalid mode --\n";
12 // am invalid mode should result in same o/p as mode 'a'
13 var_dump( php_uname('z') == php_uname('z') );
17 *** Testing php_uname() - error test
19 -- Testing php_uname() function with invalid mode --