上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: xmsb_doSwitch(); /** * @param start i的起始值,默认为0 * @param max i的最大值,默认为10 * @param interval 每次循环的间隔,默认为3秒 */ function xmsb_doSwitch(start = 0, max = 10, 阅读全文
posted @ 2022-06-05 11:28 何效名 阅读(242) 评论(0) 推荐(0) 编辑
摘要: function xmsb_getPathList($path) { $result = []; $paths = scandir($path); foreach($paths as $item) { if($item != '.' && $item != '..') { $encode = mb_ 阅读全文
posted @ 2022-04-10 18:06 何效名 阅读(408) 评论(0) 推荐(0) 编辑
摘要: 下载 首先下载 MongoDB Database Tools:点击前往 挑选合适的版本下载,windows选择.msi,linux选择.tgz。 安装 for Windows 双击下载得到的.msi文件。 这一步可以选择MongoDB同目录,方便管理。 将上图所示的bin目录加入环境变量。 安装 f 阅读全文
posted @ 2022-04-06 11:04 何效名 阅读(59) 评论(0) 推荐(0) 编辑
摘要: function str2UTF8($str) { $encode = mb_detect_encoding($str, ['ASCII', 'UTF-8', "GB2312", "GBK", 'BIG5']); if($encode == 'UTF-8') { return $str; } els 阅读全文
posted @ 2022-04-01 14:01 何效名 阅读(384) 评论(0) 推荐(0) 编辑
摘要: # 引用pymongo包 import pymongo; # 创建连接,并选择数据库和集合 client = pymongo.MongoClient("mongodb://localhost:27017/"); db = client["testdb"]; col = db["sites"]; # 阅读全文
posted @ 2022-03-31 17:03 何效名 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 下载 安装包下载地址:点击前往 挑选合适的版本下载,windows选择.msi,linux选择.tgz。 安装 for Windows 双击下载得到的.msi文件。 这一步选择Custom,以自定义安装路径。 这一步通常默认即可。 MongoDB Compass 是一个图形界面管理工具,可选安装。( 阅读全文
posted @ 2022-03-31 11:02 何效名 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 微软官方提供一种在线打开office文件的方案: https://view.officeapps.live.com/op/view.aspx?src= 在'src='后面拼接以http://或https://开头的office文件在线地址,即可直接预览对应文件。 阅读全文
posted @ 2022-01-07 15:28 何效名 阅读(899) 评论(0) 推荐(0) 编辑
摘要: 创建按年度分区的数据表: CREATE TABLE `thesis` ( `id` int NOT NULL AUTO_INCREMENT COMMENT '自增ID', `title` varchar(64) NOT NULL COMMENT '标题', `year` int(4) NOT NUL 阅读全文
posted @ 2021-12-24 14:48 何效名 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 直接上代码: <!doctype html> <html lang="zh"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-sca 阅读全文
posted @ 2021-12-17 11:58 何效名 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 创建用户: CREATE USER 用户名 IDENTIFIED BY 密码; 用户授权: GRANT CONNECT, RESOURCE, DBA TO 用户名; 创建表空间: CREATE TABLESPACE 表空间名 LOGGING DATAFILE '文件路径.dbf' SIZE 5G A 阅读全文
posted @ 2021-12-10 14:36 何效名 阅读(268) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 9 下一页