1 Star 2 Fork 0

马海宁/PHP各类验证

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
验证今天是周几.php 528 Bytes
一键复制 编辑 原始数据 按行查看 历史
马海宁 提交于 2021-12-15 12:00 . '处理验证'
<?php
/**
* 查询日期是否是周几?若是,则返回true;
* @param $week
* @param int $day
* @return bool
*/
function WeekVerify($week,int $day = 7)
{
date_default_timezone_set('PRC');
if($day < 0 || $day > 7){
return false;
}
if(!is_numeric($week)){
//看看能不能转换成时间戳
if(!strtotime($week)){
return false;
}
$week = strtotime($week);
}
if(date('N',$week) == $day){
return true;
}
return false;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mahaining22/php-various-authentication.git
[email protected]:mahaining22/php-various-authentication.git
mahaining22
php-various-authentication
PHP各类验证
master

搜索帮助