09 2022 档案

摘要:demo: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>进度条属性上传</title> </head> <body> <form method="post" enctype="multipart/form-data"> <i 阅读全文
posted @ 2022-09-27 19:16 study_php_java_C++ 阅读(100) 评论(0) 推荐(0) 编辑
摘要:任务触发自定义命名 https://developer.qiniu.com/dora/6502/upload-video-files 这里一般工作流中转码后输出命名为 convert/{{.meta.prefix}}{{.meta.fname}}.mp3 convert为文件前缀 .mp3为文件后缀 阅读全文
posted @ 2022-09-23 19:31 study_php_java_C++ 阅读(26) 评论(0) 推荐(0) 编辑
摘要:在实际开发中,我们经常会遇到数据字段类型为text,用来存储json类型的数据,但是当我们需要某一个json中的字段值的时候,就会感觉到头疼,当然我们可以使用多种方法,比如循环查询每次查询只查一个然后在json转译为数组,在获取值或者查出一个数据集合在通过foreach循环处理,不管哪种方式都绕不开 阅读全文
posted @ 2022-09-09 09:25 study_php_java_C++ 阅读(561) 评论(0) 推荐(0) 编辑
摘要:代码: /** * 校验json字符串 * @param string $stringData * @return bool */ function isJsonString($stringData) { if (empty($stringData)) return false; try { //校 阅读全文
posted @ 2022-09-07 15:40 study_php_java_C++ 阅读(413) 评论(0) 推荐(0) 编辑
摘要:最原始的写法: select A.* from tbl1 A where A.key not in (select key from tbl2) 如果tbl2表中数据量很大,比如数据上百万条,每次都这样匹配效率会非常低。 解决问题: SELECT tb1.* FROM tb1 LEFT JOIN t 阅读全文
posted @ 2022-09-02 09:53 study_php_java_C++ 阅读(1183) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示