TypeError
rewind(): Argument #1 ($stream) must be of type resource, bool given
SYSTEMPATH/Session/Handlers/FileHandler.php at line 154
147 if ($this->fileNew) {
148 chmod($this->filePath . $id, 0600);
149 $this->fingerprint = md5('');
150
151 return '';
152 }
153 } else {
154 rewind($this->fileHandle);
155 }
156
157 $data = '';
158 $buffer = 0;
159 clearstatcache(); // Address https://github.com/codeigniter4/CodeIgniter4/issues/2056
160
161 for ($read = 0, $length = filesize($this->filePath . $id); $read < $length; $read += strlen($buffer)) {请问这个是什么问题呢?
第一次接触,找了许久不知道是什么问题