X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=classes%2Fvarstream.php;h=03613230e6d8bc34f49923ff3722c4363f9f3142;hb=851962db3851d0ff89cf6cfaa9dcb82487e437bf;hp=bc7f6060731c70a058a72da2a685ebd1050a4812;hpb=5ddeb07cc787dd1dc3630a31f1528f5cc7c4d9b9;p=platal.git diff --git a/classes/varstream.php b/classes/varstream.php index bc7f606..0361323 100644 --- a/classes/varstream.php +++ b/classes/varstream.php @@ -1,6 +1,6 @@ varname = $url['host']; @@ -38,18 +38,18 @@ class VarStream return true; } - function stream_close() + public function stream_close() { } - function stream_read($count) + public function stream_read($count) { $ret = substr($GLOBALS[$this->varname], $this->position, $count); $this->position += strlen($ret); return $ret; } - function stream_write($data) + public function stream_write($data) { $len = strlen($data); if ($len > $this->position + strlen($GLOBALS[$this->varname])) { @@ -60,17 +60,17 @@ class VarStream $this->position += $len; } - function stream_eof() + public function stream_eof() { return $this->position >= strlen($GLOBALS[$this->varname]); } - function stream_tell() + public function stream_tell() { return $this->position; } - function stream_seek($offs, $whence) + public function stream_seek($offs, $whence) { switch ($whence) { case SEEK_SET: @@ -93,14 +93,15 @@ class VarStream return 0; } - function stream_flush() + public function stream_flush() { } - static function init() + static public function init() { stream_wrapper_register('var','VarStream'); } } +// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: ?>