04 2022 档案
摘要:function xmsb_getPathList($path) { $result = []; $paths = scandir($path); foreach($paths as $item) { if($item != '.' && $item != '..') { $encode = mb_
阅读全文
摘要:下载 首先下载 MongoDB Database Tools:点击前往 挑选合适的版本下载,windows选择.msi,linux选择.tgz。 安装 for Windows 双击下载得到的.msi文件。 这一步可以选择MongoDB同目录,方便管理。 将上图所示的bin目录加入环境变量。 安装 f
阅读全文
摘要:function str2UTF8($str) { $encode = mb_detect_encoding($str, ['ASCII', 'UTF-8', "GB2312", "GBK", 'BIG5']); if($encode == 'UTF-8') { return $str; } els
阅读全文