欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php-config介绍

程序员文章站 2022-03-26 12:02:54
...
很多时候,我们编译安装完PHP之后,需要重新编译安装,但是原来的编译参数不记得了,通过php-config命令可以方便的重新获取,除此之外,php-config还有其他很多有用的功能。

下面我们就介绍一下php-config的其他功能:

Option Description

-- prefix
Directory prefix where PHP is installed, e.g. /usr/local
PHP安装的路径,即编译安装的prefix参数的取值
-- includes
List of -I options with all include files
-- ldflags
LD Flags which PHP was compiled with
-- libs
Extra libraries which PHP was compiled with
编译使用到的外部库
-- extension-dir
Directory where extensions are searched by default
扩展存放目录,pecl编译完之后可以去这个目录查看
-- include-dir
Directory prefix where header files are installed by default
头文件路径
-- php-binary
Full path to php CLI or CGI binary
php二进制可执行文件目录
-- php-sapis
Show all SAPI modules available
-- configure-options
Configure options to recreate configuration of current PHP installation
php编译安装时的参数
-- version
PHP version
-- vernum
PHP version as integer

php-config在我们重新编译安装php或者编译安装pecl扩展的时候很有用处,因为系统中可能同时存在好多版本的php,这个命令能帮我们准确的定位当前使用版本,能准确的查看php编译安装的信息。

相关推荐:

PHP目录下php-config的作用

linux - 如何找到php-config文件

configure: error: Cannot find php-config.

以上就是php-config介绍 的详细内容,更多请关注其它相关文章!