Deprecated features in PHP 5.6.x ¶
Calls from incompatible context ¶
Methods called from an incompatible context are now deprecated, and will generate E_DEPRECATED errors when invoked instead of E_STRICT. Support for these calls will be removed in a future version of PHP.
An example of such a call is:
<?php
class A {
function f() { echo get_class($this); }
}
class B {
function f() { A::f(); }
}
(new B)->f();
?>
The above example will output:
Deprecated: Non-static method A::f() should not be called statically, assuming $this from incompatible context in - on line 7
B
iconv and mbstring encoding settings ¶
The iconv and mbstring configuration options related to encoding have been deprecated in favour of default_charset. The deprecated options are:
iconv.input_encoding
iconv.output_encoding
iconv.internal_encoding
mbstring.http_input
mbstring.http_output
mbstring.internal_encoding
'작성중인글' 카테고리의 다른 글
[PHP] Deprecated features in PHP 7.0.x (0) | 2016.10.20 |
---|---|
[PHP] Deprecated features in PHP 5.5.x (0) | 2016.10.20 |
혁신에 대한 이야기 (작성중) (0) | 2016.06.17 |
한컴오피스 한글 단축키 정리중 (0) | 2013.10.01 |
엑셀 - 쓸데없는 거 간단히 (0) | 2013.09.30 |
어베스트 설정 과정 기록 - 2013/09/30 (0) | 2013.09.30 |
iptime 공유기. 펌웨어 업그레이드 완료후 관리자 인증이 안 될 때 (0) | 2013.02.22 |
NSIS Error (0) | 2012.09.25 |