当我使用调度助手运行闭包时,我总是得到这个Opis\Closure\ClosureStream::stream_set_option is not implemented!。
dispatch(function () use ($done) {
foreach ($done as $order) {
try{
Log::info("Some code");
}catch(\Exception $e){
continue;
}
}
});我已经多年没有使用PHP了,我真的被困在这一部分了。
我在laravel 5.8和我的PHP 7.4上使用vagrant。
提前谢谢各位。
发布于 2020-09-13 15:58:28
我在botman laravel中也遇到了这个错误。此异常是由于PHP 7.4造成的。我通过将PHP版本从7.4降级到7.1解决了这个错误
https://stackoverflow.com/questions/63580257
复制相似问题