我想使用对php扩展有特定要求的库。所以我需要使用php 7.0
或php 7.1
这样的php扩展版本:
如何根据这些要求编译php?
答案 0 :(得分:1)
有两种选择。
您可以在计算机上安装lib-curl
7.46.0或更高版本,然后使用--with-curl
选项编译PHP。它将在计算机上使用lib-curl
的版本。与lib-openssl
相同,编译时使用--with-openssl
。
或......
PHP documentation for openssl显示您可以为openssl提供目录...因此,如果您要使用特定版本的lib-openssl
进行编译,则可以将目录传递到特定版本:
要使用PHP的OpenSSL支持,您还必须编译PHP --with-openssl [= DIR]。
lib-curl
(Here's the docs)同样如此:
要使用PHP的cURL支持,还必须编译PHP --with-curl [= DIR],其中DIR是包含lib和include目录的目录的位置。