摘要: error_reporting-------------------------------------------------------------------------------- ----Sets which PHP errors are reported 设置PHP错误报告The error_reporting() function sets the error_reporting directory at runtime.PHP has many levels of errors,using this function sets that level for the durat 阅读全文
posted @ 2012-11-17 22:48 sgsheg 阅读(165) 评论(0) 推荐(0)
摘要: 首先可以把闭包看作是js中的一种特殊的函数<script type="text/javascript"> <!-- function step(a){ return function step(x){ return x + a; } }</script>var b= step(20);alert(b(20)); 阅读全文
posted @ 2012-11-17 17:19 sgsheg 阅读(138) 评论(0) 推荐(0)
摘要: 基本类型:<html> <head> <script type="text/javascript"> /* var box = "Lee"; var box2 = 'Lee'; alert(box); alert(box2); //单引号的双引号没有任何区别,必须成对出现,不能穿插 //引号必须成对出现, */ //string包含一些特殊的字符字面量, // alert('Le\nle'); // alert('Le\rle'); //斜杠本身进行转义 //以十六机制表 阅读全文
posted @ 2012-11-17 00:12 sgsheg 阅读(131) 评论(0) 推荐(0)