include_streams.phpt 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. --TEST--
  2. Stream wrappers in include_path
  3. --FILE--
  4. <?php
  5. $data1 = $data2 = $data3 = $data4 = $data5 = $data6 = <<<'EOD'
  6. <?php echo __FILE__ . "\n";?>
  7. EOD;
  8. /*<?*/
  9. class mystream
  10. {
  11. public $path;
  12. public $mode;
  13. public $options;
  14. public $position;
  15. public $varname;
  16. function url_stat($path, $flags) {
  17. return array();
  18. }
  19. function stream_stat() {
  20. return array();
  21. }
  22. function stream_open($path, $mode, $options, &$opened_path)
  23. {
  24. $this->path = $path;
  25. $this->mode = $mode;
  26. $this->options = $options;
  27. $split = parse_url($path);
  28. if ($split["host"] !== "GLOBALS" ||
  29. empty($split["path"]) ||
  30. empty($GLOBALS[substr($split["path"],1)])) {
  31. return false;
  32. }
  33. $this->varname = substr($split["path"],1);
  34. if (strchr($mode, 'a'))
  35. $this->position = strlen($GLOBALS[$this->varname]);
  36. else
  37. $this->position = 0;
  38. return true;
  39. }
  40. function stream_read($count)
  41. {
  42. $ret = substr($GLOBALS[$this->varname], $this->position, $count);
  43. $this->position += strlen($ret);
  44. return $ret;
  45. }
  46. function stream_tell()
  47. {
  48. return $this->position;
  49. }
  50. function stream_eof()
  51. {
  52. return $this->position >= strlen($GLOBALS[$this->varname]);
  53. }
  54. function stream_seek($offset, $whence)
  55. {
  56. switch($whence) {
  57. case SEEK_SET:
  58. if ($offset < strlen($GLOBALS[$this->varname]) && $offset >= 0) {
  59. $this->position = $offset;
  60. return true;
  61. } else {
  62. return false;
  63. }
  64. break;
  65. case SEEK_CUR:
  66. if ($offset >= 0) {
  67. $this->position += $offset;
  68. return true;
  69. } else {
  70. return false;
  71. }
  72. break;
  73. case SEEK_END:
  74. if (strlen($GLOBALS[$this->varname]) + $offset >= 0) {
  75. $this->position = strlen($GLOBALS[$this->varname]) + $offset;
  76. return true;
  77. } else {
  78. return false;
  79. }
  80. break;
  81. default:
  82. return false;
  83. }
  84. }
  85. function stream_set_option($option, $arg1, $arg2) {
  86. return false;
  87. }
  88. }
  89. if (!stream_wrapper_register("test", "mystream")) {
  90. die("test wrapper registration failed");
  91. }
  92. echo file_get_contents("test://GLOBALS/data1");
  93. include("test://GLOBALS/data1");
  94. include_once("test://GLOBALS/data2");
  95. include_once("test://GLOBALS/data2");
  96. $include_path = get_include_path();
  97. set_include_path($include_path . PATH_SEPARATOR . "test://GLOBALS");
  98. echo file_get_contents("data3", true);
  99. include("data3");
  100. include_once("data4");
  101. include_once("data4");
  102. set_include_path("test://GLOBALS" . PATH_SEPARATOR . $include_path);
  103. echo file_get_contents("data5", true);
  104. include("data5");
  105. include_once("data6");
  106. include_once("data6");
  107. ?>
  108. --EXPECT--
  109. <?php echo __FILE__ . "\n";?>
  110. test://GLOBALS/data1
  111. test://GLOBALS/data2
  112. <?php echo __FILE__ . "\n";?>
  113. test://GLOBALS/data3
  114. test://GLOBALS/data4
  115. <?php echo __FILE__ . "\n";?>
  116. test://GLOBALS/data5
  117. test://GLOBALS/data6