上一页 1 ··· 4 5 6 7 8 9 10 下一页
摘要: php yii gii/model --ns=app\\modules\\v1\\models --tableName=SCM_tbInvBalance_new --modelClass=SCMTbInvBalanceNew 阅读全文
posted @ 2017-07-31 16:24 lglblog 阅读(588) 评论(0) 推荐(0) 编辑
摘要: index.php 效果 相关资料地址: http://bootstrap-table.wenzhixin.net.cn/zh-cn/documentation/ http://www.php.cn/js-tutorial-362548.html 阅读全文
posted @ 2017-07-28 17:01 lglblog 阅读(17620) 评论(2) 推荐(1) 编辑
摘要: DataConstruct.php getAllTableNames(); * $pdo->printLog($pdo->getAllTableConstruct($tables),"F:/logstr.php"); * $pdo->importSql('E:/UserTable.sql'); */class DataConstruct { public $dataBaseTyp... 阅读全文
posted @ 2017-07-24 15:33 lglblog 阅读(462) 评论(0) 推荐(0) 编辑
摘要: DB_HOST, 'username' => DB_USER, 'password' => DB_PWD, 'database' => DB_NAME, 'hostport' => DB_PORT, 'dbms' => DB_TYPE,... 阅读全文
posted @ 2017-07-24 14:29 lglblog 阅读(603) 评论(0) 推荐(0) 编辑
摘要: 在cmd中执行如下命令,即可查看到所有连接过的WiFi信息 for /f "skip=9 tokens=1,2 delims=:" %i in ('netsh wlan show profiles') do @echo %j | findstr -i -v echo | netsh wlan sho 阅读全文
posted @ 2017-07-21 11:17 lglblog 阅读(358) 评论(0) 推荐(0) 编辑
摘要: Redis存在三种级别的分布式部署:主从复制、主从切换、集群配置,推荐使用主从切换模式。 主从复制 启动主服务:端口6379 启动从服务:端口6380, 配置文件中加上 slaveof 127.0.0.1 6379,启动后服务会成为6379的从服务,自动同步6379的操作 代码中的配置 readWr 阅读全文
posted @ 2017-07-21 09:52 lglblog 阅读(310) 评论(0) 推荐(0) 编辑
摘要: 'username','头像'=>'photo','签名'=>'sign',"性别"=>'sex'];//header和字段映射 * $fieldAttr=['性别'=>'time'];//对应列的字段值转化类型 * $readFile= new ReadExcelBiz(dirname(__FILE__).'/3-26上传.xls',$fieldMap,$fieldAttr,3); * $ro... 阅读全文
posted @ 2017-07-20 15:19 lglblog 阅读(412) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2017-07-19 17:36 lglblog 阅读(10) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2017-07-18 16:45 lglblog 阅读(3) 评论(0) 推荐(0) 编辑
摘要: class Category{ public $sonName; public $parentName; public function __consturt($id,$parent_id){ $this->sonName = $id; $this->parentName = $parent_id; } /** * ... 阅读全文
posted @ 2017-07-17 17:26 lglblog 阅读(289) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 下一页