php-src/ext/standard/tests/array/compact_error.phpt
2008-08-17 22:14:14 +00:00

32 lines
705 B
PHP

--TEST--
Test compact() function : error conditions
--FILE--
<?php
/* Prototype : proto array compact(mixed var_names [, mixed ...])
* Description: Creates a hash containing variables and their values
* Source code: ext/standard/array.c
* Alias to functions:
*/
/*
* Error -tests test compact with zero arguments.
*/
echo "*** Testing compact() : error conditions ***\n";
// Zero arguments
echo "\n-- Testing compact() function with Zero arguments --\n";
var_dump( compact() );
echo "Done";
?>
--EXPECTF--
*** Testing compact() : error conditions ***
-- Testing compact() function with Zero arguments --
Warning: compact() expects at least 1 parameter, 0 given in %s on line %d
NULL
Done