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

smartycompilerexception.php 730B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. /**
  3. * Smarty compiler exception class
  4. *
  5. * @package Smarty
  6. */
  7. class SmartyCompilerException extends SmartyException
  8. {
  9. public function __toString()
  10. {
  11. return ' --> Smarty Compiler: ' . $this->message . ' <-- ';
  12. }
  13. /**
  14. * The line number of the template error
  15. *
  16. * @type int|null
  17. */
  18. public $line = null;
  19. /**
  20. * The template source snippet relating to the error
  21. *
  22. * @type string|null
  23. */
  24. public $source = null;
  25. /**
  26. * The raw text of the error message
  27. *
  28. * @type string|null
  29. */
  30. public $desc = null;
  31. /**
  32. * The resource identifier or template name
  33. *
  34. * @type string|null
  35. */
  36. public $template = null;
  37. }