PHP Velho Oeste 2024

PHP 7.0.x から PHP 7.1.x への移行

目次

このマイナーバージョンアップには数多くの 新機能 があります。 また、 互換性がない変更 が多少あるので、実運用環境の PHP をこのバージョンにあげる前にはテストすべきです。

これらのバージョンへの移行ガイドも参照ください。 7.0.x

add a note add a note

User Contributed Notes 3 notes

up
-21
shl at g8net dot com
7 years ago
For fresh installation on Ubuntu 16.04
If we want to install new version && Remove all php dependencies
sudo apt-get remove php*

sudo apt-get install php7.1 php7.1-cli php7.1-common libapache2-mod-php7.1 php7.1-mysql php7.1-fpm php7.1-curl php7.1-gd php7.1-bz2 php7.1-mcrypt php7.1-json php7.1-tidy php7.1-mbstring php-redis php-memcached
up
-32
ohcc@163com
7 years ago
php 7.1+ supports utf-8 paths and I/O streams on Windows. file system functions now return utf-8 results, you don't need to convert file paths between character sets.
up
-35
sales at k-ict dot org
6 years ago
A safe option for migration is by installing PHP 7.1 in a Docker and test the scripts.
To Top