count_invalid.phpt 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. --TEST--
  2. Only arrays and countable objects can be counted
  3. --FILE--
  4. <?php
  5. try {
  6. $result = count(null);
  7. var_dump($result);
  8. } catch (\TypeError $e) {
  9. echo $e->getMessage() . \PHP_EOL;
  10. }
  11. try {
  12. $result = count("string");
  13. var_dump($result);
  14. } catch (\TypeError $e) {
  15. echo $e->getMessage() . \PHP_EOL;
  16. }
  17. try {
  18. $result = count(123);
  19. var_dump($result);
  20. } catch (\TypeError $e) {
  21. echo $e->getMessage() . \PHP_EOL;
  22. }
  23. try {
  24. $result = count(true);
  25. var_dump($result);
  26. } catch (\TypeError $e) {
  27. echo $e->getMessage() . \PHP_EOL;
  28. }
  29. try {
  30. $result = count(false);
  31. var_dump($result);
  32. } catch (\TypeError $e) {
  33. echo $e->getMessage() . \PHP_EOL;
  34. }
  35. try {
  36. $result = count((object) []);
  37. var_dump($result);
  38. } catch (\TypeError $e) {
  39. echo $e->getMessage() . \PHP_EOL;
  40. }
  41. ?>
  42. --EXPECT--
  43. count(): Argument #1 ($value) must be of type Countable|array, null given
  44. count(): Argument #1 ($value) must be of type Countable|array, string given
  45. count(): Argument #1 ($value) must be of type Countable|array, int given
  46. count(): Argument #1 ($value) must be of type Countable|array, bool given
  47. count(): Argument #1 ($value) must be of type Countable|array, bool given
  48. count(): Argument #1 ($value) must be of type Countable|array, stdClass given