网站首页 文章专栏
何冰华个人网站
常用的PHP正则表达式
代码如下;<?php /** * *@description:正则表达式匹配 */ classRegex{ /** * *@手机号 */ publicstaticfunctionPhon
何冰华个人网站
php 获取QQ邮箱最新32条邮件
该方法需要安装php imap 扩展根据自己的需要,改成自己想要的程序publicfunctionshowemail(){ error_reporting(0);//屏蔽掉腾讯返回的一些注意事项
何冰华个人网站
获取N个月之前或者之后的日期(php语言的坑)
eg:date('Y-m-d', strtotime('+1 month', strtotime('2016-01-31'))); // 2016-03
何冰华个人网站
-bash: xxx: command not found
安装laravel时,出现了-bash:laravel: command not found 的报错,这是未能检测到环境变量的原因解决办法:Linux export 命令用于设置或显示环境变量。先找到
何冰华个人网站
python采集接口数据
采集其他网页接口的数据:fromqueueimportQueue importrequests importthreading importtime classProducter(threading
何冰华个人网站
python常用数学函数
常用函数:特别注意,大部分可用函数都存在于math包中,要先引入math包才能用函数返回值 ( 描述 )eg:abs(x)返回数字的绝对值abs(-10) 返回 10ceil(x)返回数字的上入整数m