php-src/ext/posix/tests/posix_setuid_variation1.phpt
Gabriel Caruso ce1d69a1f6 Use int instead of integer in type errors
PHP requires integer typehints to be written "int" and does not
allow "integer" as an alias. This changes type error messages to
match the actual type name and avoids confusing messages like
"must be of the type integer, integer given".
2018-02-04 19:08:23 +01:00

42 lines
1.1 KiB
PHP

--TEST--
Test function posix_setuid() by substituting argument 1 with array values.
--SKIPIF--
<?php
if(!extension_loaded("posix")) print "skip - POSIX extension not loaded";
?>
--CREDITS--
Marco Fabbri mrfabbri@gmail.com
Francesco Fullone ff@ideato.it
#PHPTestFest Cesena Italia on 2009-06-20
--FILE--
<?php
$index_array = array(1, 2, 3);
$assoc_array = array(1 => 'one', 2 => 'two');
$variation_array = array(
'empty array' => array(),
'int indexed array' => $index_array,
'associative array' => $assoc_array,
'nested arrays' => array('foo', $index_array, $assoc_array),
);
foreach ( $variation_array as $var ) {
var_dump(posix_setuid( $var ) );
}
?>
--EXPECTF--
Warning: posix_setuid() expects parameter 1 to be int, array given in %s on line 15
bool(false)
Warning: posix_setuid() expects parameter 1 to be int, array given in %s on line 15
bool(false)
Warning: posix_setuid() expects parameter 1 to be int, array given in %s on line 15
bool(false)
Warning: posix_setuid() expects parameter 1 to be int, array given in %s on line 15
bool(false)