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

📄 errors.php

📁 ProjectPier 源码 很好的项目管理程序
💻 PHP
字号:
<?php/** * Error handling plugin for Swift Mailer, a PHP Mailer class. * * @package	Swift * @version	>= 2.0.0 * @author	Chris Corbyn * @date	30th July 2006 * @license	http://www.gnu.org/licenses/lgpl.txt Lesser GNU Public License * * @copyright Copyright &copy; 2006 Chris Corbyn - All Rights Reserved. * @filesource *  *   This library is free software; you can redistribute it and/or *   modify it under the terms of the GNU Lesser General Public *   License as published by the Free Software Foundation; either *   version 2.1 of the License, or (at your option) any later version. * *   This library is distributed in the hope that it will be useful, *   but WITHOUT ANY WARRANTY; without even the implied warranty of *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU *   Lesser General Public License for more details. * *   You should have received a copy of the GNU Lesser General Public *   License along with this library; if not, write to * *   The Free Software Foundation, Inc., *   51 Franklin Street, *   Fifth Floor, *   Boston, *   MA  02110-1301  USA * *    "Chris Corbyn" <chris@w3style.co.uk> * */class Swift_Plugin_Errors implements Swift_IPlugin{	/**	 * Name of the plugin (identifier)	 * @var string plugin id	 */	public $pluginName = 'Errors';	/**	 * Contains a reference to the main swift object.	 * @var object swiftInstance	 */	protected $swiftInstance;	/**	 * The norm is the echo and continue.	 * Settting this to TRUE makes it echo the die()	 * @var bool halt	 */	protected $halt;		/**	 * Constructor.	 * @param bool halt (if the script should die() on error)	 */	public function __construct($halt=false)	{		$this->halt = (bool) $halt;	}	/**	 * Load in Swift	 * @param object SwiftInstance	 */	public function loadBaseObject(&$object)	{		$this->swiftInstance =& $object;	}	/**	 * Event handler for onError	 */	public function onError()	{		$this_error = $this->swiftInstance->lastError;				$error_info = $this->getErrorStartPoint();				if (!empty($error_info['class'])) $class = $error_info['class'].'::';		else $class = '';				$file_info = ' near '.$class.$error_info['function'].			' in <strong>'.$error_info['file'].'</strong> on line <strong>'.			$error_info['line'].'</strong><br />';				$output = '<br />'.$this_error.$file_info;		echo $output;		if ($this->halt) exit();	}	/**	 * Get the command that caused the error	 */	protected function getErrorStartPoint()	{		$trace = debug_backtrace();		$start = array_pop($trace);		return array(			'file' => $start['file'],			'line' => $start['line'],			'class' => $start['class'],			'function' => $start['function']		);	}}?>

⌨️ 快捷键说明

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