Turn off Deprecated Warnings

Deprecated: Function split() is deprecated in deprecated.php on line 9

Simply turn off these warnings in your php.ini

error_reporting  = E_ALL & ~E_DEPRECATED

Or during runtime

error_reporting(E_ALL & ~E_DEPRECATED);

Following function will throw this warning:
- call_user_method_array() instead use call_user_func_array()
- define_syslog_variables()
- dl()
- ereg_replace() instead use preg_replace()
- eregi() instead use preg_match()
- eregi_replace() instead use preg_replace()
- set_magic_quotes_runtime() instead use magic_quotes_runtime()
- session_register() instead use setzte Variable über $_SESSION
- session_unregister()
- session_is_registered()
- set_socket_blocking() instead use stream_set_blocking()
- split() instead use preg_split()
- spliti() instead use preg_split()
- sql_regcase()
- mysql_db_query() instead use mysql_select_db() oder mysql_query()
- mysql_escape_string() instead use mysql_real_escape_string()

  • Digg
  • del.icio.us
  • Facebook
  • Technorati
  • Twitthis
  • FriendFeed

POST A COMMENT

  • You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>