flush_error_001.phpt 363 B

123456789101112131415161718
  1. --TEST--
  2. Test wrong number of arguments for flush() (no impact)
  3. --FILE--
  4. <?php
  5. /*
  6. * proto void flush(void)
  7. * Function is implemented in ext/standard/basic_functions.c.
  8. */
  9. $extra_arg = 1;
  10. echo "\nToo many arguments\n";
  11. var_dump(flush($extra_arg));
  12. ?>
  13. --EXPECTF--
  14. Too many arguments
  15. Warning: flush() expects exactly 0 parameters, 1 given in %s on line %d
  16. NULL