userstreams_006.phpt 835 B

12345678910111213141516171819202122232425262728293031323334353637
  1. --TEST--
  2. User-space streams: set_options returns "not implemented" for unhandled option types
  3. --FILE--
  4. <?php
  5. class test_wrapper {
  6. function stream_open($path, $mode, $openedpath) {
  7. return true;
  8. }
  9. function stream_eof() {
  10. return false;
  11. }
  12. function stream_write($data) {
  13. echo "size: ", strlen($data), "\n";
  14. return strlen($data);
  15. }
  16. function stream_set_option($option, $arg1, $arg2) {
  17. echo "option: ", $option, ", ", $arg1, ", ", $arg2, "\n";
  18. return false;
  19. }
  20. }
  21. var_dump(stream_wrapper_register('test', 'test_wrapper'));
  22. $fd = fopen("test://foo","r");
  23. var_dump(stream_set_write_buffer($fd, 50));
  24. var_dump(stream_set_chunk_size($fd, 42));
  25. var_dump(fwrite($fd, str_repeat('0', 70)));
  26. ?>
  27. --EXPECT--
  28. bool(true)
  29. option: 3, 2, 50
  30. int(-1)
  31. int(8192)
  32. size: 70
  33. int(70)