如何从Github安装PHP扩展到我的服务器上。我正在测试PHP7并希望安装https://github.com/mkoppanen/imagick/tree/phpseven但是没有关于如何在linux上安装它的文档。
可能是一个新手问题,但真的很感激帮助。
谢谢!
答案 0 :(得分:5)
如果您使用的是phpbrew,则可以使用ext install
命令,如下所示:
$ phpbrew ext install <provider>:<organization>/<repository> <tag|branch>
以示例:
# install imagic from 'phpseven' branch
$ phpbrew ext install github:mkoppanen/imagick phpseven
# install xdebug beta (compatible with PHP7)
$ phpbrew ext install github:xdebug/xdebug XDEBUG_2_4_0beta1
# install phalcon framework from 'phalcon-v2.0.8' tag
$ phpbrew ext install github:phalcon/cphalcon phalcon-v2.0.8
# install php-ast extension from master
$ phpbrew ext install github:nikic/php-ast
PS:我确实帮助维护 phpbrew 项目,我并不是说这是实现你所要求的唯一方法。但是,一旦你设置好环境,它肯定是尝试扩展和php版本最简单的方法之一:)