溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

php7.2運(yùn)行失敗怎么解決

發(fā)布時(shí)間:2021-12-09 10:05:47 來源:億速云 閱讀:224 作者:iii 欄目:編程語言

本篇內(nèi)容主要講解“php7.2運(yùn)行失敗怎么解決”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“php7.2運(yùn)行失敗怎么解決”吧!

php7.2運(yùn)行失敗的解決辦法:1、在PHP源碼目錄下執(zhí)行“vi Makefile”;2、找到EXTRA_LIBS行;3、在行末添加“-llber”;4、保存退出并再次make即可。

php7.2運(yùn)行失敗怎么解決

本文操作環(huán)境:Windows7系統(tǒng),PHP7.2版,Dell G3電腦。

php7.2運(yùn)行失敗怎么辦?

php7.2 編譯遇到的坑

checking size of long int... (cached) 8
configure: error: Cannot find ldap libraries in /usr/lib.

解決:

./configure php的時(shí)候出現(xiàn)下面錯(cuò)誤而退出

configure: error: Cannot find ldap libraries in /usr/lib

解決辦法:

cp -frp /usr/lib64/libldap* /usr/lib/

然后再./configure ...即可

/usr/bin/ld: ext/ldap/.libs/ldap.o: undefined reference to symbol 'ber_strdup' 
//usr/lib64/liblber-2.4.so.2: error adding symbols: DSO missing from command line 
collect2: error: ld returned 1 exit status 
make: *** [sapi/cli/php] Error 1

解決辦法:遇到這種類似的情況,說明「./configure 」沒抓好一些環(huán)境變數(shù)值。

解決方法,來自老外的一篇文章:

在PHP源碼目錄下 vi Makefile 找到 EXTRA_LIBS 行,在行末添加 ‘ -llber ‘ 保存退出再次make即可

/usr/local/src/php-7.2.7/sapi/cli/php: error while loading shared libraries: libiconv.so.2: cannot open shared object file: No such file or directory
make: *** [ext/phar/phar.php] Error 127

解決:

1.先

#vi /etc/ld.so.conf

在里面加上一行 /usr/local/lib

2.然后運(yùn)行/sbin/ldconfig

 #/sbin/ldconfig

編譯make

Generating phar.phar
 
chmod: cannot access ‘ext/phar/phar.phar’: No such file or directory
make: [ext/phar/phar.phar] Error 1 (ignored)

解決:

cd ext/phar/
cp ./phar.php ./phar.phar

到此,相信大家對“php7.2運(yùn)行失敗怎么解決”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI