>백엔드 개발 >PHP7 >php7 phpize 없이 해야 할 일

php7 phpize 없이 해야 할 일

藏色散人
藏色散人원래의
2021-11-17 09:31:572339검색

phpize가 없는 php7용 솔루션: 1. resolv.conf를 수정하고 "nameserver8.8.8.8"을 추가합니다. 2. source.list의 내용을 바꾸고 "php7.0-dev"를 업데이트하고 설치합니다.

php7 phpize 없이 해야 할 일

이 기사의 운영 환경: ubuntu 16.04 시스템, PHP7.0 버전, DELL G3 컴퓨터

php7 phpize 없이 무엇을 해야 할까요?

Ubuntu 서버에서 phpize 파일이 없는 php7용 솔루션

첫 번째:

sudo vim /etc/resolv.conf

네임 서버 8.8.8.8 추가

두 번째:

/etc/apt/sources.list 的内容换成
deb http://old-releases.ubuntu.com/ubuntu/ raring main universe restricted multiverse
deb-src http://old-releases.ubuntu.com/ubuntu/ raring main universe restricted multiverse
deb http://old-releases.ubuntu.com/ubuntu/ raring-security main universe restricted multiverse
deb-src http://old-releases.ubuntu.com/ubuntu/ raring-security main universe restricted multiverse
deb http://old-releases.ubuntu.com/ubuntu/ raring-updates main universe restricted multiverse
deb-src http://old-releases.ubuntu.com/ubuntu/ raring-updates main universe restricted multiverse
deb http://old-releases.ubuntu.com/ubuntu/ raring-backports main restricted universe multiverse
deb-src http://old-releases.ubuntu.com/ubuntu/ raring-backports main restricted universe multiverse
deb http://old-releases.ubuntu.com/ubuntu/ raring-proposed main restricted universe multiverse
deb-src http://old-releases.ubuntu.com/ubuntu/ raring-proposed main restricted universe multiverse

그런 다음 sudo apt-get update 잠시 기다렸다가 apt-get install php7.0-devsudo apt-get update一下

再执行 apt-get install php7.0-dev

를 실행하세요. 추천 학습: "

PHP Video Tutorial"

위 내용은 php7 phpize 없이 해야 할 일의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.