Blogger Information
南鸢离梦的博客
Blog
55
fans
0
comment
0
visits
59371
integral:0
P beans:124
  • List of blog posts
  • app微信支付服务端

    2022-09-27 15:49 Read 577 comment 0
  • 常用正则整理

    if(!preg_match("/^1[345678]\d{9}$/", $data['phone'])){ return json(['code'=>0,'msg'=>'手机号码格式不正确']);}if(!preg_match("/^[a-...

    2019-12-24 10:50 Read 786 comment 0
  • php爬图片

    composer 安装 QueryList composer require jaeger/querylist

    2019-12-24 10:44 Read 1044 comment 0
  • PHP 使用 GD 生成推广图

    // GD生成推广图private function CreateTg($user){ $bg = Db::name(‘bg’)->find(); //图片使用本地的绝对路径 $dst_path = '1.jpg';//背景图$src_p...

    2019-12-24 10:40 Read 981 comment 0
  • 积累我的学习网址

    http://www.zhangxuu.com !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!...

    2019-11-12 16:39 Read 531 comment 0
  • 百度关键词搜索页面DOM结构特点

    百度关键词搜索页面DOM结构特点 分析了一天的百度搜索Dom结构,有点小规律,搜索出的内容,如果是广告的话都会放在一个大的div中,非广告的话,每个内容独自一个盒子,盒子的class名可以有多个,但必有c-container,这个属性可以判断这条内容...

    2019-11-12 16:28 Read 814 comment 0
  • select2

    将下载select2框架中的css,js导入,在特有的标签中加入class=”select2”就可以达到在select框具有搜索功能!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

    2019-11-12 16:28 Read 611 comment 0
  • charles简介

    Charles代理配置使用  使用Charles工具查看PC本地IP和端口号(端口号默认为8888,也可自行修改),选择“Help->Local IP Address” 通过charles抓取手机上的数据(HTTP) 第一步,charles上通过...

    2019-11-12 16:27 Read 918 comment 0
  • jquery更改tp5分页样式

    $(document).ready(function(){ init(); }); function init(){ $(".pager li:first a").html('上一页'); ...

    2019-11-12 16:26 Read 757 comment 0
  • Phpstorm破解教程

    (phpstorm下载地址)https://www.jetbrains.com/phpstorm/ (在hosts 中添加)  0.0.0.0 account.jetbrains.com 打开http://idea.lanyus.com/生成注册码

    2019-11-12 16:26 Read 566 comment 0
  • TP语言包切换功能

    一.配置 1.开启语言包功能 'lang_switch_on' => true,2.支持的语言列表 'lang_list' => ['zh-cn','en-us'],二.语言定义 3.语言定义 框架或模块目录\lang\z...

    2019-11-12 16:25 Read 1744 comment 0
  • Thinkphp5 中英文切换示例

    开启配置 'lang_switch_on' => true,'lang_list' => ['zh-cn','en-us'],定义语言包框架或模块目录\lang\zh-cn.phpreturn [ 'CHINESE'=>'中...

    2019-11-12 16:25 Read 2031 comment 0
  • yii2.0配置以pathinfo的形式访问

    yii2.0默认的访问形式为:dxr.com/index.php?r=index/list,一般我们都会配置成pathinfo的形式来访问:dxr.com/index/list,这样更符合用户习惯。具体的配置方法为:一.配置yii2.0。打开conf...

    2019-11-12 16:23 Read 629 comment 0
  • tp5 分页后数据处理

    V5.0.9版本开始 支持分页类后数据直接each遍历处理,方便修改分页后的数据,而不是只能通过模型的获取器来补充字段。$list = User::where('status',1)->paginate()->each(function($item,...

    2019-11-12 16:22 Read 1282 comment 0
  • 分页后保持条件

    在这里记录一下Tp5保持分页状态的两种方法:一:Db::name('data') -> where($where) -> paginate(5,false,['query' => request()->param()]); 二:$params...

    2019-11-12 16:22 Read 765 comment 0