dechex_error.phpt 640 B

1234567891011121314151617181920212223242526
  1. --TEST--
  2. Test dechex() - wrong params dechex()
  3. --FILE--
  4. <?php
  5. /* Prototype : string dechex ( int $number )
  6. * Description: Returns a string containing a hexadecimal representation of the given number argument.
  7. * Source code: ext/standard/math.c
  8. */
  9. echo "*** Testing dechex() : error conditions ***\n";
  10. echo "\nIncorrect number of arguments\n";
  11. dechex();
  12. dechex(23,2,true);
  13. ?>
  14. ===Done===
  15. --EXPECTF--
  16. *** Testing dechex() : error conditions ***
  17. Incorrect number of arguments
  18. Warning: dechex() expects exactly 1 parameter, 0 given in %s on line %d
  19. Warning: dechex() expects exactly 1 parameter, 3 given in %s on line %d
  20. ===Done===