上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 20 下一页
摘要: 1.本地安装elastic search 参考文章:https://blog.csdn.net/handsomezls/article/details/131260996 开机自动启动es服务(后台启动):https://cloud.tencent.com/developer/article/205 阅读全文
posted @ 2024-04-02 10:33 流浪2024 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 1.拉取php+nginx镜像 docker pull php:7.3.24-fpm-stretch docker pull nginx:latest 2.启动 PHP: docker run -d -v /var/www/test:/var/www/html -p 9000:9000 --name 阅读全文
posted @ 2023-08-09 11:16 流浪2024 阅读(471) 评论(0) 推荐(0) 编辑
摘要: 原文:https://blog.csdn.net/maomaosi2009/article/details/108293217 1、说明实时同步binlog数据到MySQL我使用了2种方式, 2、方式一第一种方式较为繁琐,数据从binlog流出,经过JS数据解析器将必要的字段解析出来,流入操作选择器 阅读全文
posted @ 2023-05-31 15:18 流浪2024 阅读(264) 评论(0) 推荐(0) 编辑
摘要: 1.读取excle中的日期 $val = $PHPExcel_sheet->getCellByColumnAndRow(ord('I')-65,3)->getValue(); echo date("Y-m-d",PHPExcel_Shared_Date::ExcelToPHP($val));die; 阅读全文
posted @ 2023-03-31 17:51 流浪2024 阅读(1129) 评论(1) 推荐(1) 编辑
摘要: 1.确保已安装Composer。如果没有请安装. 安装步骤参考:http://www.360doc.com/content/22/0919/15/65839921_1048527526.shtml 2.进入Laraver项目的根目录,通过命令窗口执行一下命令: composer dump-autol 阅读全文
posted @ 2023-03-03 14:36 流浪2024 阅读(166) 评论(0) 推荐(0) 编辑
摘要: public function getChlidPresona ($info, $presona_pid=0) { //递归显示机构组信息 $list = []; foreach($info as $k => $v) { if($v['presona_pid'] == $presona_pid) { 阅读全文
posted @ 2023-03-02 13:53 流浪2024 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 1.下载virtualbox软件,安装virtualbox(一直下一步就行)。 官网下载地址: https://www.virtualbox.org/wiki/Downloads 安装时可能提示”Microsoft Visual C++“ 版本低,需要安装最新版本C++。 2.Microsoft V 阅读全文
posted @ 2023-01-03 16:52 流浪2024 阅读(124) 评论(0) 推荐(0) 编辑
摘要: php使用curl时报错: file_exists(): Unable to find the wrappe 解决办法,打开php.ini文件,找到下面代码: 1.extension=php_openssl.dll把前面的注释去掉 2.allow_url_include = On把值设置成”On“。 阅读全文
posted @ 2022-12-20 18:47 流浪2024 阅读(166) 评论(0) 推荐(0) 编辑
摘要: /** * sql注入过滤 * @param $string 需要校验的字符 * @param $type get post cookie */ public function sqlFilter($string,$type){ $getfilter="/^'|(and|or)\\b.+?(>|<| 阅读全文
posted @ 2022-12-06 08:56 流浪2024 阅读(440) 评论(0) 推荐(0) 编辑
摘要: $randStr = str_shuffle('ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890'); $rand = substr($randStr,0,6); 阅读全文
posted @ 2022-09-06 09:55 流浪2024 阅读(341) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 20 下一页