How can I stop PHP notices from appearing in wordpress?

后端 未结 6 1124
后悔当初
后悔当初 2020-12-05 04:35

I know about error_reporting(0);, and ini_set(\'display_errors\', false);, but there is a notice appearing in wordpress:

Not

6条回答
  •  鱼传尺愫
    2020-12-05 05:27

    if you want to hide only errors that comes from this function you can use

    @function wp_check_invalid_utf8( $string, $strip = false )
    {
    
    }
    

提交回复
热议问题