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

📄 log.php

📁 一、修改产品详细页面的附件块 二、添加上浏览历史模块 三、在后台加入自定义首页、自定义页头、自定义页脚内容功能 四、在后台修改网站全局CSS样式文件功能 五、在后台修改每个模块的模板内容功能
💻 PHP
字号:
<?php/** * Swift Mailer Logging Layer Interface * Please read the LICENSE file * @author Chris Corbyn <chris@w3style.co.uk> * @package Swift_Log * @license GNU Lesser General Public License *//** * The Logger Interface * @package Swift_Log * @author Chris Corbyn <chris@w3style.co.uk> */interface Swift_Log{  /**   * Enable logging   */  public function enable();  /**   * Disable logging   */  public function disable();  /**   * Check if logging is enabled   */  public function isEnabled();  /**   * Add a failed recipient to the list   * @param string The address of the recipient   */  public function addFailedRecipient($address);  /**   * Get the list of failed recipients   * @return array   */  public function getFailedRecipients();  /**   * Set the maximum size of this log (zero is no limit)   * @param int The maximum entries   */  public function setMaxSize($size);  /**   * Get the current maximum allowed log size   * @return int   */  public function getMaxSize();  /**   * Add a new entry to the log   * @param string The information to log   * @param string The type of entry (see the constants: COMMAND, RESPONSE, ERROR, NORMAL)   */  public function add($text, $type);  /**   * Dump the contents of the log to the browser   */  public function dump();  /**   * Empty the log contents   */  public function clear();}

⌨️ 快捷键说明

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