⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 connection.php

📁 一、修改产品详细页面的附件块 二、添加上浏览历史模块 三、在后台加入自定义首页、自定义页头、自定义页脚内容功能 四、在后台修改网站全局CSS样式文件功能 五、在后台修改每个模块的模板内容功能
💻 PHP
字号:
<?php/** * Swift Mailer Connection Interface * All connection handlers extend this abstract class * Please read the LICENSE file * @author Chris Corbyn <chris@w3style.co.uk> * @package Swift_Connection * @license GNU Lesser General Public License *//** * Swift Connection Interface * Lists methods which are required by any connections * @package Swift_Connection * @author Chris Corbyn <chris@w3style.co.uk> */interface Swift_Connection{  /**   * Try to start the connection   * @throws Swift_Connection_Exception If the connection cannot be started   */  public function start();  /**   * Return the contents of the buffer   * @return string   * @throws Swift_Connection_Exception If the buffer cannot be read   */  public function read();  /**   * Write a command to the buffer   * @param string The command to send   * @throws Swift_Connection_Exception If the write fails   */  public function write($command, $end="\r\n");  /**   * Try to stop the connection   * @throws Swift_Connection_Exception If the connection cannot be closed/stopped   */  public function stop();  /**   * Check if the connection is up or not   * @return boolean   */  public function isAlive();  /**   * Add an extension which is available on this connection   * @param string The name of the extension   * @param array The list of attributes for the extension   */  public function setExtension($name, $list=array());  /**   * Check if an extension exists by the name $name   * @param string The name of the extension   * @return boolean   */  public function hasExtension($name);  /**   * Get the list of attributes for the extension $name   * @param string The name of the extension   * @return array   * @throws Swift_Connection_Exception If no such extension can be found   */  public function getAttributes($name);  /**   * Execute logic needed after SMTP greetings   * @param Swift An instance of Swift   */  public function postConnect(Swift $instance);  /**   * Returns TRUE if the connection needs a EHLO greeting.   * @return boolean   */  public function getRequiresEHLO();  /**   * Set if the connection needs a EHLO greeting.   * @param boolean   */  public function setRequiresEHLO($set);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -