202108 - PHP博客_【PHP爱好者】共同学习分享PHP技术心得-田螺的个人博客 202108 - PHP博客_【PHP爱好者】共同学习分享PHP技术心得-田螺的个人博客

最新文章

js

Jq 延时发送抢单请求

田螺 发布于 8-15

//延时发送抢单请求ajaxT=setTimeout(()=>{$.ajax({url:"{:url('submit_order')}",type:"POST",dataType:"JSON",data:{},success:(res=>{console.log(res)status=trueif(res.code==0){QS_to...

阅读(85) 评论(0)

PHP

PHP 生成随机用户名

田螺 发布于 8-15

//生成随机用户名functionget_username(){$chars1="ABCDEFGHIJKLMNOPQRSTUVWXYZ";$chars2="abcdefghijklmnopqrstuvwxyz0123456789";$username="";for($i=0;$i<mt_rand(2,3);$i++){$username.=...

阅读(94) 评论(0)

PHP

PHP 修改本地配置文件

田螺 发布于 8-15

/***修改本地配置文件**@paramarray$name['配置名']*@paramarray$value['参数']*@returnvoid*/functionsetconfig($name,$value){if(is_array($name)andis_array($value)){for($i=0;$i<count($name);...

阅读(54) 评论(0)

PHP

PHP判断当前时间是否在指定时间段之内

田螺 发布于 8-15

/***判断当前时间是否在指定时间段之内*@paraminteger$a起始时间*@paraminteger$b结束时间*@returnboolean*/functioncheck_time($a,$b){$nowtime=time();$start=strtotime($a.':00:00');$end=strtotime($b.':00:00...

阅读(59) 评论(0)