003-mb.phpt 743 B

1234567891011121314151617181920212223242526272829303132333435
  1. --TEST--
  2. bzread() tests
  3. --EXTENSIONS--
  4. bz2
  5. --FILE--
  6. <?php
  7. $fd = bzopen(__DIR__."/003私はガラスを食べられます.txt.bz2","r");
  8. var_dump(bzread($fd, 0));
  9. try {
  10. var_dump(bzread($fd, -10));
  11. } catch (\ValueError $e) {
  12. echo $e->getMessage() . \PHP_EOL;
  13. }
  14. var_dump(bzread($fd, 1));
  15. var_dump(bzread($fd, 2));
  16. var_dump(bzread($fd, 100000));
  17. ?>
  18. --EXPECT--
  19. string(0) ""
  20. bzread(): Argument #2 ($length) must be greater than or equal to 0
  21. string(1) "R"
  22. string(2) "is"
  23. string(251) "ing up from the heart of the desert
  24. Rising up for Jerusalem
  25. Rising up from the heat of the desert
  26. Building up Old Jerusalem
  27. Rising up from the heart of the desert
  28. Rising up for Jerusalem
  29. Rising up from the heat of the desert
  30. Heading out for Jerusalem
  31. "