摘要: 支持Html及markdown转wxml可视化 版本号:0.3 来源: [微信小程序开发论坛-weappdev](https://weappdev.com) 作用: 将Html/Markdown转换为微信小程序的可视化方案 特性 基本使用方法 Copy文件夹wxParse 引入必要文件 数据绑定 模 阅读全文
posted @ 2018-11-27 17:10 德丽莎·阿波卡利斯 阅读(810) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-11-27 11:16 德丽莎·阿波卡利斯 阅读(0) 评论(0) 推荐(0) 编辑
摘要: mysql 比较函数和操作符 MYSQL之中的比较函数和操作符: 1、[NOT] BETWEEN ... AND ... Check whether a value is within a range of values 说明:expr between min and max 如果expr大于或等于 阅读全文
posted @ 2018-11-26 16:42 德丽莎·阿波卡利斯 阅读(105) 评论(0) 推荐(0) 编辑
摘要: php获取某个日期0点的时间戳和24点时间戳的方法 阅读全文
posted @ 2018-11-26 14:59 德丽莎·阿波卡利斯 阅读(84) 评论(0) 推荐(0) 编辑
摘要: Mysql函数date_format,from_unixtime 详解 2016年08月12日 21:37:56 liiuweii 阅读数:282 Mysql函数date_format,from_unixtime 详解 2016年08月12日 21:37:56 liiuweii 阅读数:282 My 阅读全文
posted @ 2018-11-24 15:27 德丽莎·阿波卡利斯 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 获取数组第一个元素: 2 阅读全文
posted @ 2018-11-23 18:43 德丽莎·阿波卡利斯 阅读(175) 评论(0) 推荐(0) 编辑
摘要: MySQL中子查询IN,EXISTS,ANY,ALL,SOME,UNION介绍 2017年08月01日 22:10:38 海阔天空sky1992 阅读数:2355 MySQL中子查询IN,EXISTS,ANY,ALL,SOME,UNION介绍 2017年08月01日 22:10:38 海阔天空sky 阅读全文
posted @ 2018-11-21 20:18 德丽莎·阿波卡利斯 阅读(324) 评论(0) 推荐(0) 编辑
摘要: $tagName = substr($_GPC['tags'], 1, strlen($_GPC['tags'])-2); $tagName = str_replace('"', "", $tagName); $tagNames = explode(",", $tagName); 阅读全文
posted @ 2018-11-21 14:16 德丽莎·阿波卡利斯 阅读(78) 评论(0) 推荐(0) 编辑
摘要: htmlspecialchars遇上json_decode引发的坑 标签: php函数 2018-02-08 12:36 阅读(531) 评论(0) 一、问题描述 在php的项目里面,上次为了防止sql注入使用了htmlspecialchars函数,没想到对该函数了解不够深入,导致后来传递哦json 阅读全文
posted @ 2018-11-21 11:40 德丽莎·阿波卡利斯 阅读(2161) 评论(0) 推荐(0) 编辑
摘要: 1 账号信息验证: 身份信息验证: // 验证中文名称 function isChinaName(name) { var pattern = /^[\u4E00-\u9FA5]{1,6}$/; return pattern.test(name); } // 验证手机号 function isPhon 阅读全文
posted @ 2018-11-13 18:15 德丽莎·阿波卡利斯 阅读(85) 评论(0) 推荐(0) 编辑