php语法如何通过输入月份和日期获取个人星座,下面web建站小编给大家简单介绍一下具体实现方法!
示列代码:
function getConstellation($month, $day){ if(($month < 1 || $month > 12) || ($day < 1 || $day > 31)) return false; $constellations = [ ['20' => '水瓶座'], ['19' => '双鱼座'], ['21' => '白羊座'], ['20' => '金牛座'], ['21' => '双子座'], ['22' => '巨蟹座'], ['23' => '狮子座'], ['23' => '处女座'], ['23' => '天秤座'], ['24' => '天蝎座'], ['22' => '射手座'], ['22' => '魔羯座'] ]; list($constellation_key, $constellation_value) = each($constellations[(int)$month - 1]); if($day < $constellation_key){ list($constellation_key, $constellation_value) = each($constellations[($month - 2 < 0) ? $month = 11 : $month -= 2]); } return $constellation_value; } echo getConstellation(5,12); echo getConstellation(1,6);
上面是“php如何通过出生月份日期来计算星座”的全面内容,想了解更多关于 php入门 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_4538.html
workflows工作流
- 一尊白玉猴王ComfyUI工作流
- 一棵白色心形流苏树comfyui工作流
- 一个精致透明的朱红色水晶凤凰
- 一颗闪闪发光的水晶漂浮在森林里
- 一只黑色章鱼ComfyUI工作流
- 一座生动的点彩主义灯塔ComfyUI工作流
- 一只透明老虎骨骼标本ComfyUI工作流
- 一群蜜蜂和一个六边形蜂巢ComfyUI工作流
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!