PHP 7.4 Deprecations
https://medium.com/@kim.jangwook/ko-php-7-4-deprecations-25898e91098
Deprecated Features
https://www.php.net/manual/en/migration74.deprecated.php
* 3항 연산자를 괄호로 구분 해야만 한다
1 ? 2 : 3 ? 4 : 5; // deprecated
(1 ? 2 : 3) ? 4 : 5; // ok
1 ? 2 : (3 ? 4 : 5); // ok
*
is_real() //deprecated
-> 대신 사용 : is_float()
convert_cyr_string() function // deprecated.
-> 대신 사용 : mb_convert_string(), iconv() or UConverter.
money_format() function // deprecated.
-> 대신 사용 : intl NumberFormatter
restore_include_path() // deprecated.
-> 대신 사용 : ini_restore('include_path').
* deprecated
allow_url_include
get_magic_quotes_gpc() ,
get_magic_quotes_runtime()
hebrevc()
ezmlm_hash()
반응형
'Code > PHP' 카테고리의 다른 글
php 7.3 PCNTL 확장 기능 활성화 방법 (0) | 2020.03.24 |
---|---|
[php] PHP 7.4의 새로운 기능 (0) | 2020.03.12 |
[php] OpCache 설정 (0) | 2020.03.11 |
[php] composer 사용법 (속도 향상 방법) (0) | 2020.03.11 |
[php] composer 1.10으로 업그레이드 후 dump-autoload 경고 메시지 (0) | 2020.03.11 |