Blogger Information
鱼的熊掌
Blog
51
fans
0
comment
1
visits
65414
integral:0
P beans:102
  • List of blog posts
  • 递归创建文件夹

    function createDirectory($dir) { $dir=ltrim($dir,'./'); $arr = explode('/',$dir); $path='./'; fo...

    2023-02-08 14:04 Read 707 comment 0
  • php合并多个word文件

    tbszip下载 include_once('extend/tbszip.php'); $zip = new \clsTbsZip(); $path = 'Public/File/...

    2022-12-16 16:47 Read 1560 comment 0
  • PhpSpreadsheet导出Excel

    namespace eq; use PhpOffice\PhpSpreadsheet\Spreadsheet; class Excel{ /** * @description: 使用例子 * @return {*} *...

    2022-12-15 11:59 Read 1029 comment 0
  • Windows 宝塔 ThinkPHP3.23执行cli任务

    1、在网站根目录创建cli.php文件

    2022-12-12 14:03 Read 957 comment 0
  • PHP 保存base64位图片

    /** * @description: 保存base64位图片 * @param {*} $base64Img 64位图片 * @param {*} $name 文件名称 * @return {*} *...

    2022-11-22 17:47 Read 1082 comment 0
  • Docker Desktop运行程序linux容器报错

    报错:System.InvalidOperationException: Failed to set version to docker-desktopcmd/shell下执行netsh winsock reset

    2022-11-17 10:05 Read 458 comment 0
  • PhpWord生成word文件

    1、通过模板生成,最好使用.docx的文件生成否则会有权限问题 word内容 //模板的路径 $path='./Public/File/模板.docx'; //生成wo...

    2022-09-26 16:32 Read 891 comment 0
  • PHP删除空文件夹

    $path='./download/test'; //文件夹路径mkdir($path); //创建文件夹delFileUnderDir($path);mkdir($path); //删除空的文件夹//...

    2022-09-26 16:38 Read 453 comment 0
  • PHPExcel导出证件号问题

    证件号码格式会转成科学计数,添加转义符 "\t",如下$PHPExcel->getActiveSheet()->setCellValue(A1, '证件号码'."\t");

    2022-09-02 16:54 Read 476 comment 0
  • 企业微信局校互联应用登录弹出机构选择

    //生成授权链接 scope不能使用 静默授权:snsapi_base 使用手动授权:snsapi_privateinfo 或者 snsapi_userinfo'https://open.weixin.qq.com/connect/oauth2/au...

    2022-08-29 15:52 Read 562 comment 0
  • PHPExcel增加工作表

    $PHPExcel = new \PHPExcel(); // 添加工作表 $objWorkSheet = $PHPExcel->createSheet(); // 设置工作表下标 $PHPExcel->setActi...

    2022-08-08 18:01 Read 1137 comment 0
  • PHP冒泡排序

    $arr=[1,5,3,6,7,9,8];// 小到大function bulu_s_b($arr){ $len = count($arr); for ($i = 0; $i < $len -1; $i++) {//循环对比的轮数...

    2022-07-28 10:59 Read 463 comment 0
  • Windows查看服务器内存CPU信息

    cmd命令行运行 msinfo32

    2022-07-28 10:05 Read 724 comment 0
  • Uni-app 微信登录获取用户code

    import { WxCode , WxLogin } from '@/api/user.js' WxCode({ callback_url: 'http://m.test.com/#/pages/index/wx...

    2022-12-15 11:34 Read 2049 comment 0
  • Nginx域名80端口转发到其他内网服务器

    server{ listen 80; server_name cc.test.com 10.155.75.71; index index.php index.html index.htm default.php default.ht...

    2022-07-26 15:39 Read 1454 comment 0