12345678910111213141516171819202122232425262728293031 |
- --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
|