辛勤电灯胆

文章
7
资源
0
加入时间
2年10月21天

itchat微信自动回复消息

使用之前需要准备的工作:安装itchat API easy_install itchat#coding=utf8import itchat,timefrom itchat.content import *'''##自动回复的功能@itchat.msg_register(itchat.content.TEXT)def text_reply(msg): return msg['Tex

Go语言中的byte和rune区别、对比

http://www.cnblogs.com/sunsky303/p/9764910.htmlhttps://www.cnblogs.com/wanghui-garcia/p/10568354.html转载于:https://www.cnblogs.com/saolv/p/10904707.html

身份证号码强校验

import org.apache.commons.lang3.StringUtils;import java.util.HashSet;import java.util.Set;import java.util.regex.Pattern;public class IdNumber { /** 大陆地区地域编码最大值 **/ public static final ...

*PHP中冒号、endif、endwhile、endfor使用介绍

这些都是PHP的语法,只不过不常用而已,这些都是PHP流程控制的替代语法(是一些语法的另类写法)PHP中那些语法有替代语法?流程控制(包括if,while,for,foreach,switch)这几个语句有替代语法。替代语法的基本形式:左花括号 { 换成冒号 :把右花括号 } 分别换成 endif; || endwhile; || endfor; || endforea...