
php
许泽武
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
php curd操作封装第一版
<?php$dsn = "mysql:host=localhost;dbname=test";$db = new PDO($dsn, 'root', 'root');$database = 'test'; $insert=function($array){ $database=$GLOBALS['database']; $i=0; foreach($array as $k=&...原创 2018-07-25 15:26:38 · 442 阅读 · 0 评论 -
php curd操作封装第二版
比第一版少了九行代码<?php$dsn = "mysql:host=localhost;dbname=test";$db = new PDO($dsn, 'root', 'root');$array = ['name'=>'nnn'];$database = 'test'; $insert=function($array){ $database=$GLOBALS['d...原创 2018-07-25 20:29:40 · 346 阅读 · 0 评论 -
php 导入execl
<style>body{margin:0}li{list-style-type:none;cursor:pointer}.execl{ display:flex; justify-content:space-between;} .execl div{ display:flex; flex-direction:column;} </style><...原创 2018-08-19 17:47:52 · 147 阅读 · 0 评论 -
execl.php
<style>body{margin:0}li{list-style-type:none;cursor:pointer}.execl{ display:flex; justify-content:space-between;} .execl div{ display:flex; flex-direction:column;} .file{ display:fl...原创 2018-08-20 17:12:29 · 149 阅读 · 0 评论 -
php导出execl
https://blog.youkuaiyun.com/sinat_35861727/article/details/54930459转载 2018-08-25 16:33:11 · 225 阅读 · 0 评论