zoukankan      html  css  js  c++  java
  • php扩展

    1.定时任务管理扩展

    https://gitee.com/zjq528/yii2-cron
    

    2.php验证扩展(类似yii2)

    https://gitee.com/zjq528/php-validate
    

    3.阿里大于短信扩展

    https://github.com/zhang-jianqiang/dysms
    

    4.微信支付扩展

    https://github.com/zhang-jianqiang/omnipay-wechatpay
    

    5.支付宝支付扩展

    https://github.com/zhang-jianqiang/omnipay-alipay
    

    6.银联支付扩展

    https://github.com/zhang-jianqiang/omnipay-unionpay
    

    7.http请求扩展guzzle(没有zttp好用)

    https://github.com/zhang-jianqiang/guzzle
    

    8.http请求扩展zttp

    https://github.com/zhang-jianqiang/zttp
    

    9.yii2-redis扩展

    https://github.com/yiisoft/yii2-redis
    

    10.微信公众号扩展(easyWechat)

    https://github.com/overtrue/wechat
    

    11.七牛-ueditor(可以直接传图到七牛云js插件)

    https://github.com/zhang-jianqiang/qiuniu_ueditor
    

    12.Linux微信网页扩展

    https://github.com/zhang-jianqiang/Mojo-Weixin
    

    13.PHP解析Markdown

    https://github.com/erusev/parsedown
    

    14.PHP生成pdf文档

    https://github.com/mpdf/mpdf
    
    //使用
    $mpdf = new Mpdf();
    //防止中文乱码
    $mpdf->autoLangToFont = true;
    $mpdf->autoScriptToLang = true;
    
    $mpdf->WriteHTML('<h1>Hello world!你好</h1>');
    
    //直接输出到浏览器
    $mpdf->Output();
    //直接下载文件
    $mpdf->Output('test.pdf', 'D');
    

    15.最新phpexcel扩展

    https://phpspreadsheet.readthedocs.io/en/latest/
    
  • 相关阅读:
    QTreeWidget创建
    Qt QTreeWidget节点的添加+双击响应+删除详解(转)
    Qt QTreeWidget 树形结构实现(转)
    QMessageBox类学习:
    QAction类详解:
    Qt事件和信号的区别 .
    Qt消息机制和事件(二)
    Qt消息机制和事件(一)
    初步开始学习图
    图中最短路径算法(Dijkstra算法)(转)
  • 原文地址:https://www.cnblogs.com/zhangjianqiang/p/10238838.html
Copyright © 2011-2022 走看看