摘要: /** * 获取随机字符串 * @param int $randLength 长度 * @param int $addtime 是否加入时间戳 * @param int $format 0:只字符 1:字符和数字 2:只数字 * @return string */ function getRandS 阅读全文
posted @ 2019-08-17 15:00 清清沁沁 阅读(212) 评论(0) 推荐(0) 编辑
摘要: /** * 排序层级排序 * @param $arr 数组 * @param $id id * @param $level 层级 * @return array */ function sortPid($arr, $id, $level = 0) { $data =array(); foreach 阅读全文
posted @ 2019-08-17 14:59 清清沁沁 阅读(174) 评论(0) 推荐(0) 编辑
摘要: /** * 删除目录及目录下所有文件或删除指定文件 * @param str $path 待删除目录路径 * @param int $delDir 是否删除目录,1或true删除目录,0或false则只删除文件保留目录(包含子目录) * @return bool 返回删除状态 */ function 阅读全文
posted @ 2019-08-17 14:58 清清沁沁 阅读(4853) 评论(0) 推荐(0) 编辑
摘要: /** * 根据数组求和 * @param array * @param array * @return array * 使用 * array_value_sum($param1,$param2,$param3...) */ function array_value_sum() { $res = a 阅读全文
posted @ 2019-08-17 14:58 清清沁沁 阅读(1042) 评论(0) 推荐(0) 编辑
摘要: /** * 将数值金额转换为中文大写金额 * @param $amount float 金额(分) * @param $type int 补整类型,0:到角补整;1:到元补整 * @return mixed 中文大写金额 */ function convertAmountToCn($amount, 阅读全文
posted @ 2019-08-17 14:57 清清沁沁 阅读(545) 评论(0) 推荐(0) 编辑
摘要: /** * 多个数组的笛卡尔积 * @return array */ function combineDika() { $data = func_get_args(); $data = current($data); $result = array(); $arr1 = array_shift($d 阅读全文
posted @ 2019-08-17 14:55 清清沁沁 阅读(860) 评论(0) 推荐(0) 编辑
摘要: 1. 通过修改 FormRequest, 创建 BaseRequest <?php namespace App\Http\Requests; use Illuminate\Foundation\Http\FormRequest; use Illuminate\Http\Exceptions\Http 阅读全文
posted @ 2019-08-14 11:10 清清沁沁 阅读(560) 评论(0) 推荐(0) 编辑
摘要: <?php namespace App\Exports; use Maatwebsite\Excel\Concerns\FromCollection; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\ 阅读全文
posted @ 2019-08-14 11:03 清清沁沁 阅读(938) 评论(0) 推荐(0) 编辑
摘要: 返回数据的格式 返回数据的格式 第一种返回数据判断 ,{field:'admin_role', width:8+'%', title: '所属角色' templet:function(d){ if(d.role_id ==0) return '超级管理员' else return d.admin_r 阅读全文
posted @ 2019-04-14 14:16 清清沁沁 阅读(14876) 评论(0) 推荐(0) 编辑
摘要: <script src="http://res.wx.qq.com/open/js/jweixin-1.0.0.js"></script> 我也忘记在哪里看来的,分享接口用的是jweixin-1.0.0.js, onMenuShareTimeline 即将废除 但也不影响使用,废除以后换一下就ok. 阅读全文
posted @ 2019-03-28 11:03 清清沁沁 阅读(407) 评论(0) 推荐(0) 编辑