PHP バージョンは最近 7.1 から 7.2 にアップグレードされました。アップグレード前のバージョン:
PHP 7.1.14 (cli) (built: Feb 2 2018 08:42:59) ( NTS ) Copyright (c) 1997-2018 The PHP Group Zend Engine v3.1.0, Copyright (c) 1998-2018 Zend Technologies with Zend OPcache v7.1.14, Copyright (c) 1999-2018, by Zend Technologies with Xdebug v2.6.0, Copyright (c) 2002-2018, by Derick Rethans
アップグレード後のバージョン:
PHP 7.2.2 (cli) (built: Feb 24 2018 17:51:12) ( ZTS DEBUG ) Copyright (c) 1997-2018 The PHP Group Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies with Zend OPcache v7.2.2, Copyright (c) 1999-2018, by Zend Technologies
推奨 (無料): PHP7
アップグレード後、いくつかのフレームワークで使用時に問題があることがわかりました。主な理由は、以下に示すいくつかの機能が 7.2 以降に廃止されたためです。いくつかの一般的な問題:
1. 各機能が廃止されました:
以前のバージョンの記述:
<?php $array = array(); each($array); // Deprecated: The each() function is deprecated. This message will be suppressed on further calls
は、バージョン 7.2 では古いというメッセージを表示します。 、各メソッドの代わりに foreach を使用することも、各メソッドを自分で変更することもできます:
<?php function func_new_each(&$array){ $res = array(); $key = key($array); if($key !== null){ next($array); $res[1] = $res['value'] = $array[$key]; $res[0] = $res['key'] = $key; }else{ $res = false; } return $res; }
2. 無効なパラメーターが渡されると、count() 関数は警告警告をスローします。
##旧バージョンの書き込み<?php count(''); // Warning: count(): Parameter must be an array or an object that implements Countable
<?php function func_new_count($array_or_countable,$mode = COUNT_NORMAL){ if(is_array($array_or_countable) || is_object($array_or_countable)){ return count($array_or_countable, $mode); }else{ return 0; } }
3. create_function は放棄され、匿名関数で置き換えることができます。
以前のバージョンの記述:<?php $newfunc = create_function('$a,$b', 'return "ln($a) + ln($b) = " . log($a * $b);'); echo "New anonymous function: $newfunc\n"; echo $newfunc(2, M_E) . "\n"; // outputs // New anonymous function: lambda_1 // ln(2) + ln(2.718281828459) = 1.6931471805599 // Warning This function has been DEPRECATED as of PHP 7.2.0. Relying on this function is highly discouraged.
<?php $newfunc = function ($a,$b){ return "ln($a) + ln($b) = " . log($a * $b); }; echo $newfunc(2, M_E) . "\n";
以上がPHP 7.2 にアップグレードした後に注意する必要があることのまとめの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。