《璇》
摘要: 1 ';print_r($arr);echo '';} 6 //转码 7 function gbk($str){return iconv('utf-8','gbk',$str);} 8 function utf8($str){return iconv('gbk','utf-8',$str);} 9 //路径格式化(替换双斜线为单斜线) 10 function path_fo... 阅读全文
posted @ 2018-10-02 15:45 醉风云 阅读(525) 评论(0) 推荐(0) 编辑
摘要: _initOption($option); //初始化_mySQLi属性 $this->_initMySQLi(); } private function _initMySQLi(){ //初始化我们的 _mySQLi $this->_m... 阅读全文
posted @ 2018-09-28 16:49 醉风云 阅读(345) 评论(0) 推荐(0) 编辑
摘要: 开发一个小项目的流程简述 (1) 需求分析=>你要做什么 [需求分析师] (2) 设计我们的数据库、文档 [架构、项目经理] (3) 设计界面=>静态页面 [前端人员] (4) 编码==> [程序员php] (5) 测试阶段[测试工程师(白盒测试/黑盒测试)] (6) 实施阶段[实施工程师] 1.表 阅读全文
posted @ 2018-09-13 20:33 醉风云 阅读(1082) 评论(0) 推荐(0) 编辑
摘要: MySQL如何复制一个表1 复制 employee 表 => employee2 2 (1) create table employee2 like employee 3 (2) insert into employee2 select * from employee; 阅读全文
posted @ 2018-09-13 16:04 醉风云 阅读(2541) 评论(0) 推荐(2) 编辑