教程集 www.jiaochengji.com
教程集 >  脚本编程  >  php  >  正文 php根据日期判断星座的函数代码

php根据日期判断星座的函数代码

发布时间:2017-12-04   编辑:jiaochengji.com
分享一个用PHP来判断指定一日期属于哪个星座的函数,有需要的朋友可以看看。

例子,php根据日期判断星座的代码。
 

复制代码 代码示例:

<?php
function yige_constellation($month, $day) {
 // 检查参数有效性
 if ($month < 1 || $month > 12 || $day < 1 || $day > 31) return false;

 // 星座名称以及开始日期
 $constellations = array(
  array( "20" => "宝瓶座"),
  array( "19" => "双鱼座"),
  array( "21" => "白羊座"),
  array( "20" => "金牛座"),
  array( "21" => "双子座"),
  array( "22" => "巨蟹座"),
  array( "23" => "狮子座"),
  array( "23" => "处女座"),
  array( "23" => "天秤座"),
  array( "24" => "天蝎座"),
  array( "22" => "射手座"),
  array( "22" => "摩羯座")
 );

 list($constellation_start, $constellation_name) = each($constellations[(int)$month-1]);

 if ($day < $constellation_start) list($constellation_start, $constellation_name) = each($constellations[($month -2 < 0) ? $month = 11: $month -= 2]);

 return $constellation_name;
}

//调用:
echo yige_constellation(4, 20);

您可能感兴趣的文章:
php根据日期判断星座的函数代码
php中根据生日判断星座、生肖程序代码
js根据日期判断星座的代码
php 根据生日计算星座和生肖程序
php根据出生日期计算年龄 生肖 星座程序
PHP常用日期时间操作合集
PHP根据身份证号码,获取性别、获取生日、计算年龄等多个信息
分享一个判断干支、生肖和星座的php函数
php根据生日计算年龄/生肖/星座实例
php实例之新浪星座运势

关键词: php 星座  php日期  星座   
[关闭]
~ ~