bcosca / fatfree

A powerful yet easy-to-use PHP micro-framework designed to help you build dynamic and robust Web applications - fast!
2.66k stars 446 forks source link

Web.phpの_stream関数がPHP8を考慮して作られていないです。 #1288

Open akira6464 opened 1 month ago

akira6464 commented 1 month ago

バージョンは3.8.2です。 Web.phpの444行目「$err=$tmp['message']」で、$tmpがNullだとエラーが発生します。

ご対応よろしくお願いします。

pauljherring commented 1 month ago
   427                  if (is_string($body)) {
   428                          $match=NULL;
[...]
   441                  }
   442                  else {
   443                          $tmp=error_get_last();
   444                          $err=$tmp['message'];
   445                  }

Apparently error_get_last() (443) is returning null under whatever circumstances the OP is running under...