Heim >Backend-Entwicklung >PHP-Tutorial >mac php没有GD库怎么办

mac php没有GD库怎么办

PHPz
PHPzOriginal
2016-06-06 20:45:132326Durchsuche

mac php没有GD库怎么办

mac php没有GD库怎么办?

php 扩展安装 (此方法可以解决mac os X 之后php没有GD库问题

步骤总结

下载对应版本的源码

tar -zxvf 下载包名

 

1>     cd   下载包名

 

2>     cd   ext/要安装的扩展路径

 

3>     phpize         //该步骤执行完提示没有autoConf  则 下载安装 

                                                       安装步骤  ./congigure  &&make  &&make install

4>     ./configure

 

5>     make

 

6>     make install

 

 

 

 

下面将是一个实例   安装多线程扩展   pcntl

 

开始

先下载源码包    例如包名是   php-5.5.30.tar.gz

1>     cd   php-5.5.30.tar.gz

 

2>     cd   ext/pcntl

 

3>     phpize      

 

4>     ./configure

 

5>     make

 

6>     make install

 

第六步执行完成会返回以下信息  

/usr/local/lib/php/extensions/no-debug-non-zts-20131226/

上面的路径便是扩展的所在位置

打开   php.ini  将扩展添加到配置文件

extension=/usr/local/lib/php/extensions/no-debug-non-zts-20131226/pcntl.so

结束

 

 

 

 

注意事项:

如果安装在命令行执行php 相关命令出现

则是扩展版本和当前版本不匹配

 更多相关技术文章,请访问PHP中文网

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn