PHP Warning: preg_match(): JIT compilation failed: no more memory in
PHP7.3出现如下错误:PHP Warning: preg_match(): JIT compilation failed: no more memory in ...
解决方案:
修改 /usr/local/etc/php/7.3/php.ini:
将
;pcre.jit=1改为:
pcre.jit=0
保存,重启php,问题解决。
ps:据说这是php7.3的一个bug。
网友评论