摘要: PHP中文件锁 文件锁的用途: 若一个人在写入一个文件,另外一个人同时也打个了这个文件进行写入文件。 这情况下,如果遇到一定的碰撞概率的话,不知道到底谁的操作为准。 因此,这个时候我们引入锁机制。 若用户A在写入或者读取这个文件的时候,将文件加上共享锁。我可以读,其他人也可以读。 但是,我如果这与的 阅读全文
posted @ 2021-09-05 20:01 成文的博客 阅读(1346) 评论(0) 推荐(0) 编辑
摘要: alert(formatNum(10000000.87)); /** * @param n 输入数字 * @param is_int 是否只显示整数 * @returns {string} */ function formatNum(n,is_int=true) { //转化成字符串 var str 阅读全文
posted @ 2020-07-02 16:45 成文的博客 阅读(1798) 评论(0) 推荐(0) 编辑
摘要: 单例模式【Single】 单例模式在面向对象开发中比较常用,也是最简单的一种模式。单例就是单个实例,单个对象的意思。就是我们去实例化一个类的时候,不管调用多少次,都永远只有一个实例。这样就节省内存分配开支 原理 将构造函数__construct设置为私有的private,对外提供一个静态方法.一般是 阅读全文
posted @ 2020-07-01 21:29 成文的博客 阅读(128) 评论(0) 推荐(0) 编辑
摘要: MySQL全文索引对中文的支持需要一些特定的配置和技巧。以下是对MySQL全文索引中文支持的详细解答: 一、MySQL版本要求 MySQL 5.6及以上版本对中文支持较好,并且从MySQL 5.7.6开始,MySQL内置了ngram全文解析器,用来支持中文、日文、韩文分词。如果你的MySQL版本低于 阅读全文
posted @ 2024-10-14 17:28 成文的博客 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 设置pip镜像源 pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple 1、安装pdf2docx库 pip install pdf2docx 2、转化代码 from pdf2docx import Conve 阅读全文
posted @ 2024-04-12 09:20 成文的博客 阅读(97) 评论(1) 推荐(0) 编辑
摘要: 1. 获取表中全部字段 select GROUP_CONCAT(COLUMN_NAME) from information_schema.COLUMNS where table_name = '表名' and table_schema = '库名'; 2.数据表字段总数 SELECT count(1 阅读全文
posted @ 2024-03-15 11:13 成文的博客 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 1、确保你的 PHP 环境已经启用了 OpenSSL 扩展 $config = array( "digest_alg" => "sha1", "private_key_bits" => 1024, "private_key_type" => OPENSSL_KEYTYPE_RSA, "config" 阅读全文
posted @ 2024-03-14 12:26 成文的博客 阅读(241) 评论(0) 推荐(0) 编辑
摘要: 在Laravel中,可以使用PhpSpreadsheet库来读取Excel文件,并将其水平分割成多个表格。 首先,通过Composer安装了PhpSpreadsheet库: composer require phpoffice/phpspreadsheet 使用 <?php namespace Ap 阅读全文
posted @ 2024-02-24 14:35 成文的博客 阅读(36) 评论(0) 推荐(1) 编辑
摘要: use Illuminate\Support\Carbon; use PhpOffice\PhpSpreadsheet\Shared\Date; public function transformDateTime($value, string $format = 'Y-m-d H:i:s') if 阅读全文
posted @ 2024-02-01 17:36 成文的博客 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 1、安装组件 composer require simplesoftwareio/simple-qrcode 1.3.* 在 config/app.php 注册服务提供者: SimpleSoftwareIO\QrCode\QrCodeServiceProvider::class 同样在 config 阅读全文
posted @ 2024-02-01 17:25 成文的博客 阅读(304) 评论(0) 推荐(0) 编辑
摘要: https要使用wss连接,wss://xxxxx.com/wss 就转发到了 服务器内的127.0.0.1:2346服务。 具体转发可以放在 文件配置或者 伪静态里面 建议放在伪静态里面容易管理 nginx配置 location / { if (!-e $request_filename) { r 阅读全文
posted @ 2023-09-22 02:20 成文的博客 阅读(1292) 评论(0) 推荐(0) 编辑
摘要: 一、Apache下的伪静态配置 <IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUES 阅读全文
posted @ 2023-09-22 00:19 成文的博客 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 安装 首先通过 composer 安装 composer require topthink/think-worker SocketServer 在命令行启动服务端 php think worker:server 默认会在0.0.0.0:2345开启一个websocket服务。如果需要自定义参数,可以 阅读全文
posted @ 2023-09-15 00:10 成文的博客 阅读(549) 评论(0) 推荐(0) 编辑