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。

参考:https://stackoverflow.com/questions/53690624/errors-installing-composer-on-macos-jit-compilation-failed

原文地址:https://www.cnblogs.com/rxbook/p/10136434.html