PHP
hanxiaoyang6
这个作者很懒,什么都没留下…
展开
-
trim 去除多类型字符
trim ltrim rtrim 去除多个字符原创 2022-01-06 10:33:33 · 218 阅读 · 0 评论 -
PHP 秒数转时间
$time_lenth = time() - $status['index1_time']; if($time_lenth > 0){ $day = floor($time_lenth / (60*60*24)); $hour = floor($time_lenth % (60*60*24) / (60*60)); ...原创 2020-06-08 11:57:33 · 163 阅读 · 0 评论 -
json 数据转数组
$data = json_decode($han,true);var_dump($data);原创 2018-05-10 13:09:40 · 1181 阅读 · 0 评论 -
git 命令大全
查看分支:git branch 创建分支:git branch name 切换分支:git checkout name创建+切换分支:git checkout –b name合并某分支到当前分支:git merge name删除分支:git branch –d namecat readme.php 要查看远程库的信息 使用 git remote 要查看远程库的详细信息 使用 ...原创 2018-05-10 13:11:42 · 204 阅读 · 0 评论 -
PHP页面弹窗
echo "alert('操作成功');location.reload();";//本页面刷新 echo "alert('操作成功');window.reload();";原创 2018-05-10 13:12:33 · 17985 阅读 · 0 评论