在OSX上将IMAP添加到PHP 7.2

时间:2018-07-20 00:56:19

标签: php macos homebrew php-imap

我在OS X El Capitan上使用PHP 7.2,当然是通过Homebrew安装的。现在,我想使用PHP的IMAP扩展中的一些IMAP函数,但是无论我要搜索什么,我都找不到在OSX上添加扩展的方法。

我尝试过的一些方法……当然,我尝试了最常用的方法:

$ brew reinstall php --with-imap

但是这失败了,返回:

Warning: php: this formula has no --with-imap option so it will be ignored!

我发现顺便提到的另一种方法也失败了:

$ brew install php72-imap

Error: No available formula with the name "php72-imap" 
==> Searching for a previously deleted formula (in the last month)...
Warning: homebrew/core is shallow clone. To get complete history run:
  git -C "$(brew --repo homebrew/core)" fetch --unshallow

Error: No previously deleted formula found.
==> Searching for similarly named formulae...
Error: No similarly named formulae found.
==> Searching taps...
==> Searching taps on GitHub...
Error: No formulae found in taps.

我不确定该朝哪个方向前进。我敢肯定有一种简单的方法(可能已记录在案),但是我还没有找到。也许我只是在错误的地方寻找并使用了错误的搜索字词...

6 个答案:

答案 0 :(得分:8)

Kevin Abel提供了从Homebrew/core中删除的一些PHP扩展。您可以使用以下命令安装IMAP扩展程序:

brew tap kabel/php-ext
brew install php-imap

答案 1 :(得分:5)

有一种更好的方法可以直接使用 Homebrew 重新编译带有 IMAP 扩展的 php。

  1. 运行 brew edit php@7.4

  2. 在depends_on部分的末尾添加depends_on "imap-uw"

  3. 检查depends_on部分中的openssl版本

  4. 在 --with 部分的末尾添加 --with-imap=#{Formula["imap-uw"].opt_prefix}

  5. 在 --with-imap 之后添加 --with-imap-ssl=#{Formula["openssl@1.1"].opt_prefix}。检查它是否与depends_on 部分中的版本相同

  6. 运行 brew restart --build-from-source php@7.4

  7. php.ini 中的 php_imap.so 扩展不需要启用,因为它已经编译成 PHP。你可以查看 phpinfo();

如果功能中的公式更新,只需再次编辑公式并使用 --build-from-source 重新安装。

答案 2 :(得分:3)

这是我在Mojave下解决此问题的方法:

首先,我为PHP 7.2安装了IMAP模块

brew install kabel/php-ext/php@7.2-imap

其次,我将imap.so从已安装的文件夹复制到php.ini使用的'extension_dir'

sudo cp /usr/local/lib/php/20170718/imap.so to /usr/local/lib/php/pecl/20170718

答案 3 :(得分:3)

过期 kabel/php-ext/php@7.2-imap 后,我使用了另一个水龙头:

brew tap shivammathur/php

brew tap shivammathur/extensions

brew install imap@7.2

答案 4 :(得分:2)

对于那些在Mojave中遇到麻烦的人,我分叉了存储库并使用以下方法修复了它: 改为brew tap v1shky/php-ext

答案 5 :(得分:1)

对于那些希望使用本机命令安装imap ext而不添加其他敲击或其他内容的人来说,此答案。

简而言之,我们需要从源代码编译扩展。 好的,这是过程。

$ # Download sources from php.net of already installed php version. 
$ cd ~/Downloads
$ wget https://www.php.net/distributions/php-7.3.5.tar.gz
$ gunzip php-7.3.5.tar.gz
$ tar xvf php-7.3.5.tar
$ # Go to ext dir 
$ cd php-7.3.5/ext/imap
$ # prepare extension using phpize command, you should 
$ # ensure that you use phpize of proper version from 
$ # already installed php version as checking the API version for example
$ phpize
$ # prepare dependencies
$ # install openssl and imap
$ brew install openssl
$ brew install imap-uw
$ # after all installation check the installed paths of the exts
$ ./configure --with-kerberos --with-imap-ssl=/usr/local/Cellar/openssl/1.0.2r/ --with-imap=/usr/local/Cellar/imap-uw/2007f/
$ make
$ # get extension dir 
$ php -i | grep extension_dir
extension_dir => /usr/local/lib/php/pecl/20180731 => /usr/local/lib/php/pecl/20180731
$ cp modules/imap.so /usr/local/lib/php/pecl/20180731/
$ # add extension to your php.ini
# [imap]
# extension="imap.so"

就是这样。真幸运!