Code/PHP
                
              [php] PHP 7.4에서 삭제예정으로 정해진 기능(Deprecated)
                codens
                 2020. 3. 12. 16:58
              
              
            
            
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()  
반응형