[8] ErrorException in LocalAdapter.php line 172 Trying to access array offset on value of type null 163. } 164. 165. if(file_exists($filePath)){ 166. 167. if(!$download){ 168. 169. header('Content-Type: '.self::getMimetype($filePath)); 170. 171. ob_flush(); 172. 173. flush(); 174. 175. } 176. 177. $fileObj = fopen($filePath,"rb"); 178. 179. if($reload == 1){ 180. 181. fseek($fileObj, sprintf('%u', $ranges['start'])); 182. 183. } 184. 185. while(!feof($fileObj)){ 186. 187. echo fread($fileObj,10240); 188. 189. ob_flush(); 190. 191. flush(); 192. 193. } 194. 195. fclose($fileObj); 196. 197. } 198. 199. } 200. Call Stack
我的也是这样,服务器是公网,我在服务器上测试也是这样