开发工具:
文件大小: 15mb
下载次数: 0
上传时间: 2020-02-19
详细说明:我安装laravel的一个扩展时,提示没有ZipArchive
我根据国外的一个网站的提示进行操作,任然不成功,后重新修改了这个包才成功
首先要执行下面操作
brew update
brew install php7.3
brew link php7.3
然后执行
Step 1: Install PEAR/PECL support
cd /tmp
curl -s -O https://pear.php.net/install-pear-nozlib.phar
sudo php install-pear-nozlib.phar -d /usr/local/lib/php -b /usr/local/bin
(credit)
Step 2: Download zip extension source
I tried installing zip with pecl, but that failed because the PHP header files were missing. So I downloaded the source for the zip extension from pecl.
Step 3:下载我提供的包文件
然后解压
Step 4: Copy/modify phpsize and php-config
In order to make phpize and php-config find the PHP header files in the location that XCode places them rather than in /usr/include/php -- a read-only location now -- I followed some tips I found elsewhere and copied and modified phpize and php-config to change the include directory in each of them.
cp /usr/bin/phpize /usr/local/bin/phpize
cp /usr/bin/php-config /usr/local/bin/php-config
Step 5: Build the zip PHP extension
With all of those changes in place, I could now build the zip extension.
cd zip-1.15.5
phpize
./configure -with-php-config=/usr/local/bin/php-config
make
Step 6: Install zip PHP extension
make install fails to install the extension, again because of the read-only file system. So instead I created an extension directory under /usr/local/php.
mkdir -p /usr/local/php/extensions
cp modules/zip.so /usr/local/php/extensions/zip.so
Step 7: Update your PHP.ini
Finally we need to tell PHP to load this extension.
sudo vim /etc/php.ini
Add the following line:
extension=/usr/local/php/extensions/zip.so
Restart apache with sudo apachectl restart and you'll see the zip extension being loaded now.
(系统自动生成,下载前可以参看下载内容)
下载文件列表
相关说明
- 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
- 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度。
- 本站已设置防盗链,请勿用迅雷、QQ旋风等多线程下载软件下载资源,下载后用WinRAR最新版进行解压.
- 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
- 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
- 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.