userdirstream.phpt 859 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. --TEST--
  2. Directory Streams
  3. --FILE--
  4. <?php
  5. class test {
  6. public $idx = 0;
  7. function dir_opendir($path, $options) {
  8. print "Opening\n";
  9. $this->idx = 0;
  10. return true;
  11. }
  12. function dir_readdir() {
  13. $sample = array('first','second','third','fourth');
  14. if ($this->idx >= count($sample)) return false;
  15. else return $sample[$this->idx++];
  16. }
  17. function dir_rewinddir() {
  18. $this->idx = 0;
  19. return true;
  20. }
  21. function dir_closedir() {
  22. print "Closing up!\n";
  23. return true;
  24. }
  25. }
  26. stream_wrapper_register('test', 'test');
  27. var_dump(scandir('test://example.com/path/to/test'));
  28. ?>
  29. --EXPECT--
  30. Opening
  31. Closing up!
  32. array(4) {
  33. [0]=>
  34. string(5) "first"
  35. [1]=>
  36. string(6) "fourth"
  37. [2]=>
  38. string(6) "second"
  39. [3]=>
  40. string(5) "third"
  41. }