上一页 1 ··· 53 54 55 56 57 58 59 60 61 ··· 74 下一页
摘要: 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 生如逆旅,一苇以航 阅读(138) 评论(0) 推荐(0) 编辑
摘要: public function test1() { //新增数据: /* $bool=DB::insert('insert into student(name,age) VALUES (?,?)', ['imooc',18] ); ... 阅读全文
posted @ 2017-12-07 11:04 生如逆旅,一苇以航 阅读(155) 评论(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 生如逆旅,一苇以航 阅读(305) 评论(0) 推荐(0) 编辑
摘要: //base_path()获取当前的绝对路径 $path=base_path().'\config\web.php'; $str='abcdefg'; //要声明的字符串 file_put_contents($path,$str);//把字符串内容存储到web.php中。 阅读全文
posted @ 2017-12-05 15:20 生如逆旅,一苇以航 阅读(2178) 评论(0) 推荐(0) 编辑
摘要: webname=$webname; $this->weburl=$weburl; } function _getwebinfo(){ return "网站名称".$this->webname." ".$this->weburl; } } $hdw=new Web("蓝天","www.lantian.com"); echo $hdw->_... 阅读全文
posted @ 2017-12-05 07:02 生如逆旅,一苇以航 阅读(226) 评论(0) 推荐(0) 编辑
摘要: _a();//输出:222 a::_a();//输出:222*/ //静态方法重写时必须是静态方法。 /*class c{ static function cc(){ echo 11; } } class d extends c{ static function cc(){ echo 333; } }*/ class e{ ... 阅读全文
posted @ 2017-12-04 06:48 生如逆旅,一苇以航 阅读(284) 评论(0) 推荐(0) 编辑
摘要: "; $this->getConfig(); $this->connect(); } private function connect(){ $this->mysqli=Model::$config['webconfig']['weburl']; echo $this->mysqli; } priva... 阅读全文
posted @ 2017-12-03 09:23 生如逆旅,一苇以航 阅读(318) 评论(0) 推荐(0) 编辑
摘要: pinpai."手机通过10v电压充电"; } function kaijidonghua(){ return ">>"; } } class moto extends shouji { function __construct() { $this->pinpai = "摩托罗拉"; } function ... 阅读全文
posted @ 2017-12-02 18:18 生如逆旅,一苇以航 阅读(203) 评论(0) 推荐(0) 编辑
摘要: shengyin = 20; } public function yaokongqi($anniu, $liang = '') { switch ($anniu) { case "shengyin": $this->shengyin($liang); break; ... 阅读全文
posted @ 2017-12-01 08:00 生如逆旅,一苇以航 阅读(246) 评论(0) 推荐(0) 编辑
摘要: kan(); } function kan(){ echo "看电视"; } function __destruct() { echo "释放对象"; } } $d1=new diansi(); $d2=$d1; unset($d1);//手动释放对象: echo "=================";*/ /... 阅读全文
posted @ 2017-11-30 15:51 生如逆旅,一苇以航 阅读(171) 评论(0) 推荐(0) 编辑
上一页 1 ··· 53 54 55 56 57 58 59 60 61 ··· 74 下一页