我最近使用brew安装了PHP 7.0并提供了线程支持:
var pieces = req.url.replace(/^\/+/, '').split('/');
var version = pieces[0];
req.version = version || 0;
但是这导致了一些问题,我想再次删除线程支持。
我尝试了以下命令:
brew install php70 --with-httpd24 --with-thread-safety
基本相同,但没有brew reinstall php70 --with-httpd24
,但它接缝brew会自动添加它:
--with-thread-safety
选项brew reinstall php70 --with-httpd24
==> Reinstalling homebrew/php/php70 --with-httpd24 --with-thread-safety
==> Downloading https://php.net/get/php-7.0.18.tar.bz2/from/this/mirror
不存在,那么如何取消选择--without-thread-safety
选项?
答案 0 :(得分:2)
brew reinstall
无法做到这一点。
使用brew uninstall php70
然后brew install php70 --with-httpd24
。