您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

smartyexception.php 295B

123456789101112131415
  1. <?php
  2. /**
  3. * Smarty exception class
  4. *
  5. * @package Smarty
  6. */
  7. class SmartyException extends Exception
  8. {
  9. public static $escape = false;
  10. public function __toString()
  11. {
  12. return ' --> Smarty: ' . (self::$escape ? htmlentities($this->message) : $this->message) . ' <-- ';
  13. }
  14. }