--TEST-- fopencookie detected and working (or cast mechanism works) --FILE-- data, $this->position, $count); $this->position += strlen($ret); return $ret; } function stream_tell() { return $this->position; } function stream_eof() { return $this->position >= strlen($this->data); } function stream_seek($offset, $whence) { switch($whence) { case SEEK_SET: if ($offset < strlen($this->data) && $offset >= 0) { $this->position = $offset; return true; } else { return false; } break; case SEEK_CUR: if ($offset >= 0) { $this->position += $offset; return true; } else { return false; } break; case SEEK_END: if (strlen($this->data) + $offset >= 0) { $this->position = strlen($this->data) + $offset; return true; } else { return false; } break; default: return false; } } function stream_write($data) { return false; } function stream_close() { } function stream_flush() { return false; } function stream_stat() { return NULL; } function url_stat($url) { return NULL; } function dir_opendir($url, $options) { return false; } function dir_readdir() { return NULL; } function dir_closedir() { } function dir_rewinddir() { } } stream_register_wrapper("cookietest", "userstream"); include("cookietest://foo"); ?> --EXPECT-- If you can read this, it worked