octdec_error.phpt 870 B

12345678910111213141516171819202122232425262728293031323334353637
  1. --TEST--
  2. Test octdec() - wrong params test octdec()
  3. --FILE--
  4. <?php
  5. /* Prototype : number octdec ( string $octal_string )
  6. * Description: Returns the decimal equivalent of the octal number represented by the octal_string argument.
  7. * Source code: ext/standard/math.c
  8. */
  9. echo "*** Testing octdec() : error conditions ***\n";
  10. // get a class
  11. class classA
  12. {
  13. }
  14. echo "\n-- Incorrect number of arguments --\n";
  15. octdec();
  16. octdec('0123567',true);
  17. echo "\n-- Incorrect input --\n";
  18. octdec(new classA());
  19. ?>
  20. --EXPECTF--
  21. *** Testing octdec() : error conditions ***
  22. -- Incorrect number of arguments --
  23. Warning: octdec() expects exactly 1 parameter, 0 given in %s on line %d
  24. Warning: octdec() expects exactly 1 parameter, 2 given in %s on line %d
  25. -- Incorrect input --
  26. Catchable fatal error: Object of class classA could not be converted to string in %s on line %d