codecamp

Smarty成员方法;Smarty::muteExpectedErrors()

Name

Smarty::muteExpectedErrors() — 忽略脚本警告信息

说明

string muteExpectedErrors();

muteExpectedErrors() 通过PHP的set_error_handler()函数来注册一个自定义错误处理器。 该错误处理器仅简单通过$errno 和 $errfile来检查当前错误,如果当前错误级别是warning或notice将被忽略,而如果是其他错误级别将被传递到下一个错误处理器。

Smarty::unmuteExpectedErrors()可移除当前的自定义错误处理器。 请注意,如果在调用了muteExpectedErrors()后,你还有注册一些自定义错误处理器,那么Smarty::unmuteExpectedErrors()将只会移除在后面注册的处理器,而不会移除muteExpectedErrors()注册的处理器。


Smarty成员方法:loadFilter()
Smarty成员方法:registerCacheResource()
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

I.Smarty基础

1.Smart是什么?

II.Smarty模板设计师篇

6.Smarty复合修饰器

9.Smarty配置文件

10.Smarty调试控制台

III. 程序开发者篇

11. Smarty字符集编码

12.Smarty常量

13.Smarty成员变量

14.Smarty成员方法

17.Smarty高级特性

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }