quoted_printable_decode example

/** * decode a quoted printable encoded string * * The charset of the returned string depends on your iconv settings. * * @param string encoded string * @return string decoded string */
    public static function decodeQuotedPrintable($string)
    {
        return quoted_printable_decode($string);
    }
}

    $content = apply_filters( 'wp_mail_original_content', $content );

    if ( false !== stripos( $content_transfer_encoding, 'quoted-printable' ) ) {
        $content = quoted_printable_decode( $content );
    }

    if ( function_exists( 'iconv' ) && ! empty( $charset ) ) {
        $content = iconv( $charsetget_option( 'blog_charset' )$content );
    }

    // Captures any text in the body after $phone_delim as the body.     $content = explode( $phone_delim$content );
    $content = empty( $content[1] ) ? $content[0] : $content[1];

    $content = trim( $content );

    
Home | Imprint | This part of the site doesn't use cookies.