최근 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
In 버전 7.2에서는 Each 메서드 대신 foreach를 사용하거나 Each 메서드를 직접 수정할 수 있습니다.
<?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() 함수에서 경고가 발생합니다. 경고:
이전 버전 7.2에서는 쓰기 방법
<?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.
이 있을 것입니다. 버전 7.2에서는 경고 대신 익명 함수로 수정될 수 있습니다:
<?php $newfunc = function ($a,$b){ return "ln($a) + ln($b) = " . log($a * $b); }; echo $newfunc(2, M_E) . "\n";
위는 업그레이드입니다. 일시적으로 발생한 몇 가지 문제와 기타 관련 수정 사항은 Lianjia 제품 기술 팀의 번역 및 배열에서 찾을 수 있습니다: PHP7 .2 버전 안내
위 내용은 PHP를 7.2로 업그레이드한 후 주의해야 할 사항 요약의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!