1,147 バイト追加
、 2020年6月8日 (月) 15:22
PHPは書き散らすには、便利な言語。[[Category:How-To]]
== Ubuntu 16.04 LTS の PHP を 7.0 から 7.2 にアップグレードする ==
Ubuntu 16.04 LTS では PHP のバージョンが 7.0 だが、すでに 7.0 は古くてサポートが少ない。
7.2 にアップデートする。
=== リポジトリを追加 ===
<pre>
$ sudo add-apt-repository ppa:ondrej/php
$ sudo apt-get update
</pre>
=== インストール ===
<pre>
$ sudo apt-get install php7.2 php7.2-fpm php7.2-mysql php7.2-mbstring php7.2-zip php7.2-xml libapache2-mod-php7.2
</pre>
=== 切替 ===
<pre>
$ update-alternatives --config php
There are 2 choices for the alternative php (providing /usr/bin/php).
Selection Path Priority Status
------------------------------------------------------------
* 0 /usr/bin/php7.0 70 auto mode
1 /usr/bin/php7.2 72 manual mode
2 /usr/bin/php7.0 70 manual mode
Press <enter> to keep the current choice[*], or type selection number: 1
</pre>
Apache2 のモジュールも変更。
<pre>
$ sudo a2dismod php7.0
$ sudo a2enmod php7.2
</pre>