mac 下安裝php7 1 memcache擴充套件

2022-08-31 00:54:13 字數 1070 閱讀 4126

資料夾名為:pecl-memcache-php7

2.解壓後進入資料夾執行如下命令

phpize

我執行phpize的遇到這個報錯

$ phpize

grep: /usr/include/php/main/php.h: no such file

or directory

grep: /usr/include/php/zend/zend_modules.h: no such file

or directory

grep: /usr/include/php/zend/zend_extensions.h: no such file

or directory

configuring

for:php api version:zend module api no:zend extension api no:

缺少php的header標頭檔案,再一看/usr/include資料夾根本不存在敲出如下命令: 

$ xcode-select --install

xcode-select: note: install requested for command line developer tools

如果phpize還是無效、執行下列命令安裝header標頭檔案sdk即可:

$ cd /library/developer/commandlinetools/packages/$ open macos_sdk_headers_for_macos_10.14.pkg

./configure --with-php-config=/usr/local/opt/php\@7.1/bin/php-config

php-config修改為指定路徑

which php-config

3.執行make & make install 命令

4、配置php.ini加入如下:

extension="memcache.so"

php.ini 路徑

/private/etc/php.ini

windows下安裝redis和memcached

redis安裝 redis server啟動後不能關閉cmd介面,關閉之後就不能再連線上了 memcached 安裝 2.解壓放某個盤下面,比如 d wampserver bin memcached memcached.exe 3.在終端 也即cmd命令介面 下輸入以下命令安裝windows服務 d...

Mac電腦上MAMP開發環境安裝memcache

一 先給mac安裝memcached伺服器端 我這裡是利用homebrew來安裝的,主要2個命令 brew install memcached和brew install libmemcached 相關可以檢視這篇文章 configure 如果報錯,說明系統沒有 autoconf,需要裝一下,裝完後重...

windows下php7 1安裝redis擴充套件

首先我們應該安裝redis伺服器 修改密碼,開啟redis安裝目錄的redis.windows.conf檔案 以及redis.windows service.conf 找到 requirepass foobared這一行,然後在下面增加一行 requirepass 你的密碼開啟乙個cmd,然後啟動r...