摘要:
报错信息: Unable to negotiate with 111.111.113.86 port 123: no matching host key type found. Their offer: ssh-rsa 分析: 原因是Mac os Ventura 13.0 升级了ssh到9.0,ss 阅读全文
摘要:
$date = date_create_from_format('d-m-Y', '22-03-2018'); // Output date in given format $a = date_format($date, 'Y-m-d'); echo $a; echo strtotime($a); 阅读全文
摘要:
grep(global search regular expression(RE) and print out the line,全面搜索正则表达式并把行打印出来)是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹配的行打印出来。 选项 : -a 不要忽略二进制数据。 -A<显示列数> 除 阅读全文