很多時候,我們編譯安裝完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編譯安裝的資訊。
相關推薦:
configure: error: Cannot find php-config.
#以上是php-config介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!