Linux編譯安裝php擴充套件

2021-08-21 13:23:58 字數 721 閱讀 4884

進入解壓後的php原始碼包目錄

cd /usr/local/src/php-7.2.7

然後再進入到裡面的ext目錄裡面對應的擴充套件目錄

這裡我列出自己編譯過的擴充套件(安裝好之後,需要到php.ini檔案裡面開啟對應的擴充套件)

phpize找不到的話,用find查詢一下phpize,用絕對路徑

phpize

./configure --

with

-curl

=/usr/local/curl --

with

-php

-config

=/usr/local/php7/bin/php-config

make

make install

phpize

./configure --

with

-php

-config

=/usr/local/php7/bin/php-config

--with

-pdo

-mysql

=/usr --

with

-zlib

-dir

=/usr/lib64/mysql

make

make install

linux下編譯安裝php擴充套件

今天部署我的部落格時出現了幾個問題 1.undefined class constant mysql attr init command 2.call to undefined function home controller curl init 這才發現我安裝的php7忘裝了pod mysql和c...

LINUX 下編譯安裝PHP擴充套件庫

找到需要安裝的php擴充套件庫,如redis,mongodb 獲取redis wget get redis 2.2.4.tgz tar zxf redis 2.2.4.tgz cd redis 2.2.4 phpize是用來擴充套件php擴充套件模組的,通過phpize可以建立php的外掛程式模組 ...

Linux 下 PHP 擴充套件 PDO 編譯安裝

本文內容是以 centos 為例,紅帽系列的 linux 方法應該都是如此,下面就詳細說明步驟,在這裡嚴重鄙視哪些內容囉嗦 說的雜七雜八的有關 pdo 編譯安裝的文章。1 進入 php 的軟體包 pdo 擴充套件目錄中 注 不是 php 安裝目錄 plain view plain copy root...