TRIM.php 409 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. return [
  3. [
  4. 'HELLO',
  5. 'HELLO ',
  6. ],
  7. [
  8. 'HELLO',
  9. ' HELLO',
  10. ],
  11. [
  12. 'HELLO',
  13. ' HELLO ',
  14. ],
  15. [
  16. ' HELLO',
  17. ' HELLO',
  18. ],
  19. [
  20. 'HELLO WORLD',
  21. 'HELLO WORLD',
  22. ],
  23. [
  24. 'TRUE',
  25. true,
  26. ],
  27. [
  28. null,
  29. null,
  30. ],
  31. 'no arguments' => ['exception'],
  32. ];