macos php brew,Mac 下用 brew 搭建 PHP 开发环境

搭建过程

安装 Homebrew

$ brew search php (非必要)

$ brew options php71 (非必要)

$ brew install homebrew/php/php71 --with-httpd Apache环境

$ brew install mysql

$ brew install homebrew/php/php71-xdebug 安装扩展

which apachectl 或 which httpd 查询httpd位置(非必要)

apachectl -V 或 httpd -V 查看Apache配置文件位置(非必要)

php -m 查询已安装模块(非必要)

php -i | grep php.ini 查询php.ini文件(非必要)

$ brew services list 详细使用运行brew services可以查看帮助(非必要)

$ sudo brew services run httpd 需要root权限

$ brew services run mysql

一、安装 Homebrew

Homebrew是macOS 缺失的软件包管理器。安装过程也非常简单:

$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

将以上命令粘贴至终端。脚本会在执行前暂停,并说明将它将做什么。

二、环境搭建(简洁方式)

$ brew search php

查询可用的formula,注意以下几个:

homebrew/php/php53

homebrew/php/php54

homebrew/php/php55

homebrew/php/php56

homebrew/php/php70

homebrew/php/php71

homebrew/php/php72

PHP后面的数字代表PHP版本,homebrew/php/php72-redis 类似这样的是PHP版本对用的扩展。

默认是不会安装Apache Handler module,可以使用 --with-httpd 参数。

安装mysql,php扩展方法一样。

三、遇到问题及处理方式(重点)

安装模块不可用,

原因1: 线程安全和非线程安全

brew reinstall -fs php71-mcrypt 重新安装线程安全模块

运行brew install 可以添加 --interactive 参数,解释如下

$ brew help install

brew install --interactive [--git] formula:

If --interactive (or -i) is passed, download and patch formula, then

open a shell. This allows the user to run ./configure --help and

otherwise determine how to turn the software package into a Homebrew

formula.

If --git (or -g) is passed, Homebrew will create a Git repository, useful for

creating patches to the software.

原因2: 模块不可用

PHP Warning: PHP Startup: Unable to load dynamic library '/usr/local/opt/php71-redis/redis.so' - dlopen(/usr/local/opt/php71-redis/redis.so, 9): Symbol not found: _basic_globals

Referenced from: /usr/local/opt/php71-redis/redis.so

Expected in: flat namespace

in /usr/local/opt/php71-redis/redis.so in Unknown on line 0

Warning: PHP Startup: Unable to load dynamic library '/usr/local/opt/php71-redis/redis.so' - dlopen(/usr/local/opt/php71-redis/redis.so, 9): Symbol not found: _basic_globals

Referenced from: /usr/local/opt/php71-redis/redis.so

Expected in: flat namespace

in /usr/local/opt/php71-redis/redis.so in Unknown on line 0

解决方法:添加 --build-from-source (or -s) 参数

例如: brew reinstall --build-from-source php71-redis

Thanks.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值