当前位置: 首页>>代码示例>>PHP>>正文


PHP html2text::convert方法代码示例

本文整理汇总了PHP中html2text::convert方法的典型用法代码示例。如果您正苦于以下问题:PHP html2text::convert方法的具体用法?PHP html2text::convert怎么用?PHP html2text::convert使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在html2text的用法示例。


在下文中一共展示了html2text::convert方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: sl_send_email

function sl_send_email($to, $subject, $html, $plain = null, $attachment = null)
{
    if (empty($to)) {
        return false;
    }
    $hash = md5(date('r', time()));
    $headers['From'] = 'The LoveMachine <love@sendlove.us>';
    $headers['To'] = $to;
    if (!empty($html)) {
        if (empty($plain)) {
            $h2t = new html2text($html, 75);
            $plain = $h2t->convert();
        }
        $headers["Content-Type"] = "multipart/alternative; boundary=\"PHP-alt-{$hash}\"";
        $body = "\n--PHP-alt-{$hash}\nContent-Type: text/plain; charset=\"utf-8\"\nContent-Transfer-Encoding: 7bit\n\n" . $plain . "\n\n--PHP-alt-{$hash}\nContent-Type: text/html; charset=\"utf-8\"\nContent-Transfer-Encoding: 7bit\n\n" . $html . "\n\n--PHP-alt-{$hash}--";
        if ($attachment != null && !empty($attachment['name']) && !empty($attachment['content'])) {
            $headers["Content-Type"] = "multipart/mixed; boundary=\"PHP-mixed-{$hash}\"";
            //encode it with MIME base64,
            //and split it into smaller chunks
            $attachmentContent = chunk_split(base64_encode($attachment['content']));
            $body = "\n--PHP-mixed-{$hash}\nContent-Type: multipart/alternative; boundary=\"PHP-alt-{$hash}\"\n\n" . $body . "\n--PHP-mixed-{$hash}  \nContent-Type: {$attachment['type']}; name=\"{$attachment['name']}\"  \nContent-Transfer-Encoding: base64  \nContent-Disposition: attachment  \n\n{$attachmentContent}\n--PHP-mixed-{$hash}-- \n";
        }
    } else {
        $body = $plain;
    }
    send_authmail(array('sender' => 'authuser', 'server' => 'gmail-ssl'), $to, $subject, $body, $headers);
    return true;
}
开发者ID:highfidelity,项目名称:love,代码行数:28,代码来源:send_email.php

示例2: renderFormatedString

 public function renderFormatedString($str, $format, $return = false)
 {
     if ($format == 'plain_text') {
         if (class_exists('html2text')) {
             $str = html2text::convert($str);
         } else {
             $str = strip_tags($str);
         }
         if ($return === false) {
             if (!headers_sent()) {
                 header('Content-Type: text/plain');
             }
             echo $str;
         } else {
             return $str;
         }
     }
 }
开发者ID:atelierspierrot,项目名称:devdebug,代码行数:18,代码来源:Debugger.php

示例3: convert_html_to_text

 function convert_html_to_text($html)
 {
     return html2text::convert($html);
 }
开发者ID:ket-ed,项目名称:autoemail,代码行数:4,代码来源:checkemail.php


注:本文中的html2text::convert方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。