Home > Backend Development > PHP Tutorial > osx - macport 安装php55 后如何编译PHP 安装其他插件?

osx - macport 安装php55 后如何编译PHP 安装其他插件?

WBOY
Release: 2016-06-06 20:26:37
Original
1258 people have browsed it

使用macport 安装了php55 php55-fpm 等。。

装好的php环境中缺少iconv等函数库,

搜索了一下很多安装的办法,都是编译php目录进行安装,如下所示:
http://php.net/manual/zh/iconv.installation.php

可是macport方式安装的php55如何编译?

如果要下载php源码包进行编译,php55-fpm等又该如何安装..

求教,谢谢

回复内容:

使用macport 安装了php55 php55-fpm 等。。

装好的php环境中缺少iconv等函数库,

搜索了一下很多安装的办法,都是编译php目录进行安装,如下所示:
http://php.net/manual/zh/iconv.installation.php

可是macport方式安装的php55如何编译?

如果要下载php源码包进行编译,php55-fpm等又该如何安装..

求教,谢谢

你先port install php55-iconv 看看源里有没有。没有的话下载相应版本的源码,确定自己的环境中有phpize和php-config 然后编译就好了。编译完了把so文件拷到扩展目录,写到配置文件里

我不用MAC,只用linux。
php的有些扩展需要额外安装,比如curl,mysqli等扩展

<code>sudo apt-get install php5-curl
sudo apt-get install php5-mysqlnd
</code>
Copy after login

你看看php的icon扩展是不是也在其他的包里面?

如果从源码安装需要使用 --with- 的方式运行 configure脚本再make

泻药~

像php5-fpm都已经集成在php源代码里面了,安装应该就是常规的make && sudo make install

p.s. 不过我虽然用mac,但是装php都是用ubuntu虚拟机来装得,一来ubuntu下的软件包比较多,二来能很容易创建备份/镜像 --所以建议题主还是用虚拟机装个ubuntu吧,毕竟较流行的环境是LAMPP,不是OAMPP

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template