php 5.3이 더 이상 사용되지 않는 기능을 사용하고 있기 때문에 이것을 읽는 사람은 더 이상 php 5.3을 사용하지 말고 최신 버전의 php로 전환하십시오.
다음은 사용되지 않는 INI 지정 문 목록입니다. 이러한 INI 지시문을 사용하면 시작시 E_DEPRECATED 오류가 발생하므로 최신 버전을 사용하여 개발할 것을 권장합니다.
define_syslog_variables
register_globals
register_long_arrays
safe_mode
magic_quotes_gpc
magic_quotes_runtime
magic_quotes_sybase
Comments starting with '#' are now deprecated in .INI files.
사용되지 않는 기능 :
는 는
되지 않는 기능
call_user_method() (use call_user_func() instead)
call_user_method_array() (use call_user_func_array() instead)
define_syslog_variables()
dl()
ereg() (use preg_match() instead)
ereg_replace() (use preg_replace() instead)
eregi() (use preg_match() with the 'i' modifier instead)
eregi_replace() (use preg_replace() with the 'i' modifier instead)
set_magic_quotes_runtime() and its alias, magic_quotes_runtime()
session_register() (use the $_SESSION superglobal instead)
session_unregister() (use the $_SESSION superglobal instead)
session_is_registered() (use the $_SESSION superglobal instead)
set_socket_blocking() (use stream_set_blocking() instead)
split() (use preg_split() instead)
spliti() (use preg_split() with the 'i' modifier instead)
sql_regcase()
mysql_db_query() (use mysql_select_db() and mysql_query() instead)
mysql_escape_string() (use mysql_real_escape_string() instead)
Passing locale category names as strings is now deprecated. Use the LC_* family of constants instead.
The is_dst parameter to mktime(). Use the new timezone handling functions instead.
:
Assigning the return value of new by reference is now deprecated.
Call-time pass-by-reference is now deprecated.
스카이프는 저에게 문제가되었습니다. 스카이프에서 로그 아웃 한 것은 저에게 도움이되었습니다. –
Skype가 문제를 일으키는 경우 포트 80을 사용하지 않도록 설정할 수 있습니다. 옵션 -> 고급 -> 연결에서 "포트 80 및 443 사용 ..."의 선택을 취소하고 Skype를 다시 시작하십시오. – khattam