count_error.phpt 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --TEST--
  2. Test count() function : error conditions - pass incorrect number of args
  3. --FILE--
  4. <?php
  5. /* Prototype : int count(mixed var [, int mode])
  6. * Description: Count the number of elements in a variable (usually an array)
  7. * Source code: ext/standard/array.c
  8. */
  9. /*
  10. * Pass incorrect number of arguments to count() to test behaviour
  11. */
  12. echo "*** Testing count() : error conditions ***\n";
  13. // Zero arguments
  14. echo "\n-- Testing count() function with Zero arguments --\n";
  15. var_dump( count() );
  16. //Test count with one more than the expected number of arguments
  17. echo "\n-- Testing count() function with more than expected no. of arguments --\n";
  18. $var = 1;
  19. $mode = 10;
  20. $extra_arg = 10;
  21. var_dump( count($var, $mode, $extra_arg) );
  22. echo "Done";
  23. ?>
  24. --EXPECTF--
  25. *** Testing count() : error conditions ***
  26. -- Testing count() function with Zero arguments --
  27. Warning: count() expects at least 1 parameter, 0 given in %s on line %d
  28. NULL
  29. -- Testing count() function with more than expected no. of arguments --
  30. Warning: count() expects at most 2 parameters, 3 given in %s on line %d
  31. NULL
  32. Done