上一页 1 ··· 3 4 5 6 7 8 下一页

状态 ajax

摘要: //html部分 <a href="#" data-status="{$vo.state}" data-urid="{$vo.id}" onclick="edit_status(this)"> {if $vo.state=='1'} <span class="span-btn"> 启用 </span 阅读全文
posted @ 2018-08-03 13:20 旺仔小裤头 阅读(112) 评论(0) 推荐(0) 编辑

php execl导入

摘要: /** * 导入Excel功能 是把execl表中的数据添加到数据表中 */ public function import(){ if (!empty($_FILES)) { $file = request()->file('import'); $info = $file->rule('uniqid 阅读全文
posted @ 2018-07-06 18:35 旺仔小裤头 阅读(83) 评论(0) 推荐(0) 编辑

php execl导出

摘要: /** * 导出 是把数表中的数据添加到execl表中 */ public function export(){ $xlsData = Db('user')->select(); Vendor('PHPExcel.PHPExcel');//调用类库,路径是基于vendor文件夹的 Vendor('P 阅读全文
posted @ 2018-07-06 18:31 旺仔小裤头 阅读(109) 评论(0) 推荐(0) 编辑

PHP搜索 搜索 搜索

摘要: //搜索界面 public function search(){ $param=input('param.'); $where=[]; //搜索框 if(!empty($param['content'])){ $where_content=['like',"%$param['content']%"] 阅读全文
posted @ 2018-07-06 17:32 旺仔小裤头 阅读(278) 评论(0) 推荐(0) 编辑

后台图片操作案例

摘要: // 添加作品 public function add(){ return $this->fetch(); } //把新图片添加到文件夹里 public function info($file=''){ $info = $file->validate(['ext'=>'jpg'])->rule('u 阅读全文
posted @ 2018-07-04 13:18 旺仔小裤头 阅读(319) 评论(0) 推荐(0) 编辑

PHP后台登录 接口

摘要: /** * 登录 * tel 手机号 */ public function login(){ $param=input('param.'); if(!empty($param['tel'])){ if(preg_match("/^1[34578]{1}\d{9}$/",$param['tel'])) 阅读全文
posted @ 2018-07-04 13:09 旺仔小裤头 阅读(1374) 评论(0) 推荐(0) 编辑

PHP后台图片上传作品 接口

摘要: //把新图片添加到文件夹里 public function info($file=''){ $info = $file->validate(['ext'=>'jpg'])->rule('uniqid')->move(ROOT_PATH . 'public' . DS . 'uploads'); // 阅读全文
posted @ 2018-07-04 13:08 旺仔小裤头 阅读(1319) 评论(0) 推荐(0) 编辑

PHP后台评论 接口

摘要: /** * 添加评论 * content 评论内容 * addtime 评论时间 * uid 评论作品 */ public function padd(){ $param=input('param.'); $param['pid']=session('tid'); if(empty($param[' 阅读全文
posted @ 2018-07-04 13:05 旺仔小裤头 阅读(295) 评论(0) 推荐(0) 编辑

后台每人每个作品都只能投一票 接口

摘要: /** * 每人每个作品都只能投一票 * uid */ public function pvote(){ $param=input('param.'); $param['pid']=session::get('tid'); if(empty($param['uid'])){ return json( 阅读全文
posted @ 2018-07-04 13:04 旺仔小裤头 阅读(153) 评论(0) 推荐(0) 编辑

后台点赞 接口

摘要: /** * 点赞 * uid */ public function dvote(){ $param=input('param.'); $param['pid']=session::get('tid'); if(empty($param['uid'])){ return json(['code'=>2 阅读全文
posted @ 2018-07-04 13:03 旺仔小裤头 阅读(814) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 下一页