- 博客(8)
- 收藏
- 关注
原创 php curl 传输多维文件数组
<?php$url = 'http://test.com/index2.php';$data = [ 'name' => 'join', 'files[one]' => getFormFile($filePath, $filePath, 'image/jpeg'), 'files[two]' => getFormFile($fil...
2019-11-28 21:07:26 601
原创 PHP 导出Csv
/** * 导出Csv * * @param array $headers 标题行,| 后面表示默认值,如:['id' => 'ID|0' , 'name' => '姓名|/' , 'age' => '年龄|0'] * @param array $data 数据 * 如:[['id' => 1 , 'name' =>...
2019-08-12 16:57:35 133
原创 exportExcelByFetchingHtml
1.构建表格HTML<table> <tr> <td>姓名</td> <td>年龄</td> </tr> <?php foreach([['username'=>'tom','age'=>18],['username'=
2019-01-16 14:32:46 305
原创 exportExcel
<?php/** * 导出Excel * @param array $heads 表头 一维数组 * @param mixed $mixed 数据(二维关联数组)| 函数 如 foreach($list AS $item){return "<tr><td>{$item['id']}</td></tr>";} * @param ar...
2019-01-16 14:17:48 1050
原创 curl
/** * get * post方式请求资源 * @param string $url 基于的baseUrl * @param int $flag 标志位 * @param array $header 头部 * @return string 返回的资源内容 */function curl_get($url, $flag = 0, $header = []){...
2019-01-16 14:13:04 217
原创 CURL模拟登录、抓取页面数据
<?phprequire('phpQuery-master/phpQuery/phpQuery.php');try { //模拟登录表单Fields $post = [ 'username' => '100000', 'password' => '123456', 'submit' => '登录'...
2019-01-09 10:22:04 896
原创 导出Excel
```/** * 导出Excel * @param array $heads 表头 一维数组 * @param mixed $mixed 数据(二维关联数组)| 函数 如 foreach($list AS $item){return "<tr><td>{$item['id']}</td></tr>";} * @param array $fi...
2018-07-31 10:24:12 173
原创 无限极分类
function getTreeFromArray($data, $pid = 0, $key = 'id', $pKey = 'parent_id', $childKey = 'child', $maxDepth = 0, $level = 0){ static $depth = 0; $depth++; $level++; $tree = array();
2017-02-09 18:02:09 277
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人