上一页 1 2 3 4 5 6 7 8 9 10 ··· 23 下一页
摘要: 原文:https://www.html5tricks.com/15-jquery-html5-image-player.html 阅读全文
posted @ 2023-01-19 15:16 pine007 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 源码:https://github.com/pine007/source-codes/blob/main/html-css-js-手写简易轮播图.zip 1、效果 2、编码 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>轮播图 阅读全文
posted @ 2023-01-19 15:13 pine007 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 原文:https://blog.csdn.net/qq_34466755/article/details/111411986 1、问题 img在div中会在底部产生额外的空隙 <body> <style> div { color: #fff; background-color: blue; } im 阅读全文
posted @ 2023-01-18 14:39 pine007 阅读(128) 评论(0) 推荐(0) 编辑
摘要: array_map() 函数将用户自定义函数作用到数组中的每个值上,并返回用户自定义函数作用后的带有新值的数组 array_combine() 通过合并两个数组来创建一个新数组,其中的一个数组元素为键名,另一个数组元素为键值 //--需求:将二维索引数组转换为指定键名的关联数组 $data = [ 阅读全文
posted @ 2023-01-13 13:39 pine007 阅读(248) 评论(0) 推荐(0) 编辑
摘要: 原文:https://learnku.com/articles/62503 简单模式 第一种情况,我称之为传导关联表 国家有很多用户,用户有很多帖子 countries id - integer name - string users id - integer country_id - intege 阅读全文
posted @ 2023-01-13 12:00 pine007 阅读(431) 评论(0) 推荐(0) 编辑
摘要: whereExists 方法允许你使用 where exists SQL 语句。whereExists 方法接收一个 闭包 作为参数,该闭包获取一个查询构建器实例,从而允许你定义放置在 「exists」 字句中的查询: $users = DB::table('users') ->whereExist 阅读全文
posted @ 2023-01-07 13:51 pine007 阅读(747) 评论(0) 推荐(0) 编辑
摘要: 原文:https://blog.csdn.net/m0_72200584/article/details/128075370 let array1 = [ { id:'1',name:'liuqiang' }, { id:'2',name:'zhaobo' } ] let array2 = [ { 阅读全文
posted @ 2022-12-14 18:52 pine007 阅读(466) 评论(0) 推荐(0) 编辑
摘要: 基本排序算法总结 原文:https://blog.csdn.net/qq_21187515/article/details/127212565 一直想总结一下最常用的排序算法,自己写一下代码并运行一下记忆更深刻 1、插入排序 说明 每步将一个待排序的记录,按其排序码大小,插到前面已经排序的文件中的适 阅读全文
posted @ 2022-12-14 17:44 pine007 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 1、json对象 1.1、方法 使用对象操作的方法进行查询:字段->'$.json属性' 使用函数进行查询:json_extract(字段, '$.json属性') 获取JSON数组/对象长度:JSON_LENGTH() 1.2、数据 { "tag": ["GRS", "GOTS"], "size" 阅读全文
posted @ 2022-12-14 15:59 pine007 阅读(16511) 评论(0) 推荐(0) 编辑
摘要: 原文:https://www.cnblogs.com/DiDi516/p/11787257.html 1、前言 ​ 物流行业中,通常会涉及到EDI报文(XML格式文件)传输和回执接收,每发送一份EDI报文,后续都会收到与之关联的回执(标识该数据在第三方系统中的流转状态)。这里枚举几种回执类型:MT1 阅读全文
posted @ 2022-12-02 18:43 pine007 阅读(183) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 23 下一页