会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
流浪2024
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
9
···
22
下一页
2024年8月22日
php 跳转页面之前弹窗提示
摘要: // 方法一: echo "<script>alert('提交成功')</script>"; header("refresh:0;url=callback.php"); // 方法二: echo "<script>alert('提交成功');window.location.href=document
阅读全文
posted @ 2024-08-22 08:59 流浪2024
阅读(140)
评论(0)
推荐(0)
2024年8月21日
php多维数组排序 array_multisort
摘要: 参考文章:https://www.cnblogs.com/ivy-zheng/p/12557645.html array_multisort — 对多个数组或多维数组进行排序 array_multisort() 可以用来一次对多个数组进行排序,或者根据某一维或多维对多维数组进行排序。 关联(stri
阅读全文
posted @ 2024-08-21 08:40 流浪2024
阅读(1564)
评论(0)
推荐(0)
2024年8月20日
php5.6安装redis扩展
摘要: 参考:https://www.cnblogs.com/q35455075/p/14110914.html 1.下载 选择php_redis-2.2.5-5.6-ts-vc11-x64.zip和php_igbinary-1.2.1-5.5-ts-vc11-x64.zip 下载地址: http://wi
阅读全文
posted @ 2024-08-20 16:01 流浪2024
阅读(215)
评论(0)
推荐(0)
2024年8月12日
电脑微信多开
摘要: 左键点住桌面微信图标,Enter 键摁几下就可以开几个号
阅读全文
posted @ 2024-08-12 11:39 流浪2024
阅读(88)
评论(0)
推荐(0)
2024年8月8日
MySQL this is incompatible with sql_mode=only_full_group_by-错误解决
摘要: 1.mysql执行group by时遇到下面提示: SELECT list is not in GROUP BY clause and contains nonaggregated column 'crm.b.id' which is not functionally dependent on co
阅读全文
posted @ 2024-08-08 11:11 流浪2024
阅读(933)
评论(0)
推荐(0)
2024年8月6日
password_hash加密实例
摘要: $pwd = password_hash('123456',PASSWORD_DEFAULT); echo $pwd; $res = password_verify('1234567',$pwd); var_dump($res); 1.password_hash() 函数用于创建密码的散列(hash
阅读全文
posted @ 2024-08-06 14:12 流浪2024
阅读(179)
评论(0)
推荐(0)
win7升级win10参考经验
摘要: win7升级win10参考: 1.https://www.php.cn/faq/576688.html 2.https://jingyan.baidu.com/article/acf728fd60c6a6b9e510a3ab.html
阅读全文
posted @ 2024-08-06 11:34 流浪2024
阅读(117)
评论(0)
推荐(0)
2024年8月2日
vue项目 package示例
摘要: { "name": "admin", "version": "1.0.0", "private": false, "scripts": { "serve": "vue-cli-service serve --open --mode=dev", "dev": "vue-cli-service serv
阅读全文
posted @ 2024-08-02 08:22 流浪2024
阅读(60)
评论(0)
推荐(0)
2024年8月1日
定时任务脚本示例
摘要: #!/bin/bash PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin cd /var/www/html/shop/ php think test
阅读全文
posted @ 2024-08-01 18:57 流浪2024
阅读(44)
评论(0)
推荐(0)
nohup在后台常驻运行php脚本
摘要: 参考:https://www.jb51.net/program/31838687q.htm nohup是什么 nohup是Linux和Unix系统中的一个命令,其作用是在终端退出时,让进程在后台继续运行。它的全称为“no hang up”,意为“不挂起”。nohup命令可以让你在退出终端或关闭SSH
阅读全文
posted @ 2024-08-01 18:44 流浪2024
阅读(189)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
9
···
22
下一页
公告