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


PHP CI_Email::clear方法代码示例

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


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

示例1: clear

 /**
  * Initialize the Email Data
  *
  * @access	public
  * @return	void
  */
 function clear($clear_attachments = FALSE)
 {
     // patch for bug # 7826
     // http://codeigniter.com/bug_tracker/bug/7826/
     if ($this->_get_protocol() == "smtp") {
         $this->_cc_array = array();
         $this->_bcc_array = array();
     }
     parent::clear($clear_attachments);
 }
开发者ID:pmorris,项目名称:CodeIgniter-Libraries,代码行数:16,代码来源:MY_Email.php

示例2: clear

 public function clear($clear_attachments = FALSE)
 {
     $clear_attachments = !empty($clear_attachments);
     parent::clear($clear_attachments);
     if ($this->mailer_engine == 'phpmailer') {
         $this->phpmailer->clearAllRecipients();
         $this->phpmailer->clearReplyTos();
         if ($clear_attachments) {
             $this->phpmailer->clearAttachments();
         }
         $this->phpmailer->clearCustomHeaders();
         $this->phpmailer->Subject = '';
         $this->phpmailer->Body = '';
         $this->phpmailer->AltBody = '';
     }
     return $this;
 }
开发者ID:blrik,项目名称:bWorld,代码行数:17,代码来源:BLHN_Email.php

示例3: clear

 /**
  * Extends basic CI_Email clear function with app_email clear data.
  */
 public function clear()
 {
     parent::clear();
     // empty app_email specifics
     $this->_data = array();
 }
开发者ID:BitmanNL,项目名称:traffictower-cms,代码行数:9,代码来源:App_email.php


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