mirror of
https://github.com/php/php-src.git
synced 2024-12-15 04:45:03 +08:00
ce1d69a1f6
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".
42 lines
1.1 KiB
PHP
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)
|