05 2021 档案

摘要:TP执行队列的命令 ├─ 2756 /usr/local/php/bin/php think queue:work --queue=collection --delay=0 --memory=128 --sleep=3 --tries=0 ├─ 2769 /usr/local/php/bin/php 阅读全文
posted @ 2021-05-27 18:16 MargoHu 阅读(407) 评论(0) 推荐(0)
摘要:正则匹配手机号码 原文链接:https://blog.csdn.net/itbrand/article/details/109239620 一般表单页面都需要填写手机号,校验用户输入的手机号码是否正确,就要用到正则表达式,用正则表达式来匹配手机号段,如在运营商号段内,则号码正确。因此,需要知道运营商 阅读全文
posted @ 2021-05-26 11:48 MargoHu 阅读(2915) 评论(0) 推荐(1)
摘要:时间格式化转换 /** * 计算持续时长 * * @param int $second 秒数 * @return string $duration 5天10小时43分钟40秒 */ function secondTime($seconds=0){ $duration = ''; $seconds = 阅读全文
posted @ 2021-05-14 02:23 MargoHu 阅读(64) 评论(0) 推荐(0)
摘要:使用fixed定位将元素(如按钮)悬浮在页面底部 在开发过程中,会遇到将一个按钮或其他元素一直悬浮在底部的需求。这个时候就需要用到fixed的定位方法: button{ bottom:0; //可以更改为自己的需求距离底部的长度 position:fixed; }拓展:在css中,元素的定位方式一共 阅读全文
posted @ 2021-05-13 11:49 MargoHu 阅读(1963) 评论(0) 推荐(0)
摘要:LNMP一键安装教程 安装步骤:1、使用putty或类似的SSH工具登陆VPS或服务器;登陆后运行:screen -S lnmp如果提示screen: command not found 命令不存在可以执行:yum install screen 或 apt-get install screen安装, 阅读全文
posted @ 2021-05-02 11:12 MargoHu 阅读(1226) 评论(0) 推荐(0)