✏️ 正在编辑: smartycompilerexception.php
路径:
/home/bpioifn/www/pigmentse/vendor/smarty/smarty/libs/sysplugins/smartycompilerexception.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php /** * Smarty compiler exception class * * @package Smarty */ class SmartyCompilerException extends SmartyException { /** * @return string */ public function __toString() { return ' --> Smarty Compiler: ' . $this->message . ' <-- '; } /** * The line number of the template error * * @type int|null */ public $line = null; /** * The template source snippet relating to the error * * @type string|null */ public $source = null; /** * The raw text of the error message * * @type string|null */ public $desc = null; /** * The resource identifier or template name * * @type string|null */ public $template = null; }
💾 保存文件
← 返回文件管理器