12 2015 档案

摘要:定义和用法:error_reporting() 设置 PHP 的报错级别并返回当前级别。 函数语法:error_reporting(report_level) 如果参数 level 未指定,当前报错级别将被返回。下面几项是 level 可能的值:值 常量 描述1 E_ERROR 致命的运行错误。错误... 阅读全文
posted @ 2015-12-17 16:12 等待是一生最初的苍老 阅读(645) 评论(0) 推荐(0)
摘要:"; } public function say() { echo "父类" . $this->name . "今年," . $this->age; }}class sun extends family { public $name; //与父类属性同名将覆盖父... 阅读全文
posted @ 2015-12-17 15:11 等待是一生最初的苍老 阅读(253) 评论(0) 推荐(0)
摘要:"; } public function say() { echo "父类" . $this->name . "今年," . $this->age; }}class sun extends family { public $name; //与父类属性同名将覆盖父... 阅读全文
posted @ 2015-12-17 12:03 等待是一生最初的苍老 阅读(112) 评论(0) 推荐(0)
摘要:"; if (isset($this->$property_name)) { return($this->$property_name); } else { return(NULL); } } //__... 阅读全文
posted @ 2015-12-17 10:51 等待是一生最初的苍老 阅读(142) 评论(0) 推荐(0)
摘要:^13[0-9]{1}[0-9]{8}|14[57]{1}[0-9]{8}|15[0-9]{1}[0-9]{8}|17[0678]{1}[0-9]{8}|18[0-9]{1}[0-9]{8}$ 阅读全文
posted @ 2015-12-15 16:22 等待是一生最初的苍老 阅读(258) 评论(0) 推荐(0)
摘要:$(document).keyup(function (event) { if (event.keyCode == "13") { document.getElementById("btnseach").cli... 阅读全文
posted @ 2015-12-10 11:35 等待是一生最初的苍老 阅读(317) 评论(0) 推荐(0)
摘要:seqArr = $arr; $this->length = count($arr); } /* * 返回线性表中第$index个数据元素 */ public function GetElem($index) { if (($this->... 阅读全文
posted @ 2015-12-04 10:53 等待是一生最初的苍老 阅读(697) 评论(0) 推荐(0)