摘要: 原文地址:http://canann.iteye.com/blog/1941173 阅读全文
posted @ 2017-12-07 11:56 生如逆旅,一苇以航 阅读(885) 评论(0) 推荐(0) 编辑
摘要: 1、text/html是html格式的正文 2、text/plain是无格式正文 3、text/xml忽略xml头所指定编码格式而默认采用us-ascii编码 4、application/xml会根据xml头指定的编码格式来编码: text/plain还可以有效避免XSS漏洞 阅读全文
posted @ 2017-12-07 11:46 生如逆旅,一苇以航 阅读(136) 评论(0) 推荐(0) 编辑
摘要: public function test1() { //新增数据: /* $bool=DB::insert('insert into student(name,age) VALUES (?,?)', ['imooc',18] ); ... 阅读全文
posted @ 2017-12-07 11:04 生如逆旅,一苇以航 阅读(153) 评论(0) 推荐(0) 编辑
摘要: host=HOST; $this->user=USER; $this->pwd=PWD; $this->dbname=DBNAME; $this->_connect(); } function _connect(){ $this->mysqli=new mysqli($this->host,$this... 阅读全文
posted @ 2017-12-07 07:11 生如逆旅,一苇以航 阅读(303) 评论(0) 推荐(0) 编辑