摘要: 第一种方法 + 在要获取的文件URL后面添加参数,如本来要获取的文件URL是 http://cdn.xxx.qiniu.cn/test.file,加参数改成 http://cdn.xxx.qiniu.cn/test.file?r=(new Date).getTime() 第二种方法 + 调用API刷 阅读全文
posted @ 2021-01-18 19:02 aGreatMan 阅读(419) 评论(0) 推荐(0)
摘要: using System; using System.IO; namespace _2020_01_17 { class Program { static void Main(string[] args) { string dir = Path.Combine(Directory.GetCurren 阅读全文
posted @ 2021-01-18 18:59 aGreatMan 阅读(561) 评论(0) 推荐(0)
摘要: 在c#的System.Diagnostics命名空间里有一个Stopwatch类,可以用来计时 using System;using System.Diagnostics; namespace ConsoleApp2 { class Program { static void Main(string 阅读全文
posted @ 2021-01-18 13:27 aGreatMan 阅读(181) 评论(0) 推荐(0)
摘要: 使用阿里云composer镜像源 composer config -g repo.packagist composer https://mirrors.aliyun.com/composer/ 参考链接: https://developer.aliyun.com/composer 阅读全文
posted @ 2021-01-18 11:45 aGreatMan 阅读(65) 评论(0) 推荐(0)
摘要: 在phpmyadmin的默认安装目录有一个config.inc.php,更改里面的password即可 阅读全文
posted @ 2021-01-18 11:18 aGreatMan 阅读(278) 评论(0) 推荐(0)
摘要: mysqladmin -u <用户名> -p password <你要设置的新密码> 然后按照提示输入原来的旧密码 阅读全文
posted @ 2021-01-18 11:15 aGreatMan 阅读(183) 评论(0) 推荐(0)