如何用php判断年份生肖(如何用php判断年份生肖属性)
本篇文章给大家谈谈如何用php判断年份生肖,以及如何用php判断年份生肖属性对应的知识点,希望对各位有所帮助,不要忘了收藏本站喔。
本文目录一览:
- 1、html输入年份求属相,在窗体应用程序中怎么输出年份然后显示生肖,求代
- 2、输出指定年份的生肖用户php编写代码程序
- 3、200财富值, 怎么用 php 查日期 年月日天干地支代码
- 4、想运行一个代码可以在表格中填年份自动跳出当年的生肖,不知道怎么把表格和php关联,请说一下要怎么改
- 5、php 自动计算12生肖
html输入年份求属相,在窗体应用程序中怎么输出年份然后显示生肖,求代
提起html输入年份求属相,大家都知道,有人问输入年份,判断该年的生肖,另外,还有人想问怎么用年份推算生肖?求方法,你知道这是怎么回事?其实编写程序,输入一个年份,判断该年属相.(提示switch-…,下面就一起来看看在窗体应用程序中怎么输出年份然后显示生肖,求代码,希望能够帮助到大家!
html输入年份求属相
这个可以用取模的方式实现。主要思路如下:
dimyearasinteger
dimremasinteger
year=val(inputbox(“请输入年份”))
rem=
selectcaserem
case0
msgbox”猴”
case1
msgbox”鸡”
case2
msgbox”狗”
case3
msgbox”猪”
case4
msgbox”鼠”
case5
msgbox”牛”
编写程序,输入一个年份,判断该年属相.(提示switch-…
case6
msgbox”虎”
case7
msgbox”兔”
case8
msgbox”龙”
case9
msgbox”蛇”
msgbox”马”
msgbox”羊”
endselect
主要代码就是这样了,你在根据要修改完善下就可以了
html输入年份求属相:输入年份,判断该年的生肖
这个答案是:牛
属牛人的性格优点:①勤奋努力,有强烈的进取心;②忠厚老实,务实,责任心强,有耐力;③有正义感,爱打抱不平;
④勤俭持家,稳定。
属牛人的性格弱点:稍微固执已见,缺乏通融;有时钻”牛角尖”主观独断
属牛人的性格详解:从出生时辰对属牛人人生的影响来看,白天出生的安静的夜晚出生的牛更积极、更好斗。与此相仿,夏天出生的冬天出生的牛生活更、更富有。
PHP输入年份查询属相的代码。
PHP通过年份查询属相示例代码如下,具体逻辑体现在代码中。
//判断是否为日期格式,默认时间格式为Y-m-d
function is_date($dateStr,$fmt=”Y-m-d”){
$dateArr = explode(“-“,$dateStr);
if(empty($dateArr)){
return false;
}
foreach($dateArr as $val){
if(strlen($val)2){
$val=”0″.$val;
}
$newArr[]=$val;
}
$dateStr =implode(“-“,$newArr);
$unixTime=strtotime($dateStr);
$checkDate= date($fmt,$unixTime);
if($checkDate==$dateStr)
return true;
else
return false;//通过出生年月获取属相
function getShuXiang($bithdayDate){
//判断输入日期格式
if(!is_date($bithdayDate)){
echo “日期输入错误,请检查!”;
}
//年是鼠年
$data = array(‘鼠’,’牛’,’虎’,’兔’,’龙’,’蛇’,’马’,’羊’,’猴’,’鸡’,’狗’,’猪’);
$index = ($bithdayDate-)%12;
return $data[$index];echo “属相:”.getShuXiang(“-05-19”);
//属相:蛇
?
以上就是与在窗体应用程序中怎么输出年份然后显示生肖,求代码相关内容,是关于输入年份,判断该年的生肖的分享。看完html输入年份求属相后,希望这对大家有所帮助!
输出指定年份的生肖用户php编写代码程序
function sx($year) {
$i = ($year % 12) - 3;
$i = $i 0 ? $i + 12 : $i;
switch ($i){
case 1:
return "鼠";
break;
case 2:
return "牛";
break;
case 3:
return "虎";
break;
case 4:
return "兔";
break;
case 5:
return "龙";
break;
case 6:
return "蛇";
break;
case 7:
return "马";
break;
case 8:
return "羊";
break;
case 9:
return "猴";
break;
case 10:
return "鸡";
break;
case 11:
return "狗";
break;
case 0:
return "猪";
break;
}
}
200财富值, 怎么用 php 查日期 年月日天干地支代码
天干是指: 甲 乙 丙 丁 戊 己 庚 辛 壬 癸;
地支是指:子 丑 寅 卯 辰 巳 午 未 申 酉 戌 亥。干和支组合在一起常用来纪年。
php获取指定日期对应干支代码如下:
?php
header("Content-type:text/html;charset=utf-8;");
function get_ganzhi($date){
$date=strtotime($date);
$year = date('Y', $date);
$month = date('m', $date);
$day = date('d', $date);
$data = array(
array('甲', '乙', '丙', '丁', '戊', '己', '庚', '辛', '壬', '癸'),
array('子', '丑', '寅', '卯', '辰', '巳', '午', '未', '申', '酉', '戌', '亥')
);
$num = $year - 1900 + 36;
return $result = $data[0][$num % 10] . $data[1][$num % 12]."年";
}
echo get_ganzhi("2016-07-08");
//丙申年
想运行一个代码可以在表格中填年份自动跳出当年的生肖,不知道怎么把表格和php关联,请说一下要怎么改
html
head
meta http-equiv="content-type"content="text/html;charset=gbk"/
/head
body
h1生肖/h1
form method='get'
请输入年份:input type="text"size=4 maxlength=4 name="year"
input type="submit" name='submit'
/form
/body
/html
?php
if($_GET[submit]){
$nume=($_GET['year']-999)%12;
switch ($nume){
case 1:
echo "鼠";break;
case 2;
echo "牛";break;
case 3:
echo "虎";break;
case 4:
echo "兔";break;
case 5:
echo "龙";break;
case 6:
echo "蛇";break;
case 7:
echo "马";break;
case 8:
echo "羊";break;
case 9:
echo "猴";break;
case 10:
echo "鸡";break;
case 11:
echo "狗";break;
case 0:
echo "猪";break;
}
}
?
php 自动计算12生肖
?php
//2002/10/23--出生年月
/*
计算12个星座
计算12个生肖
计算年龄
*/
class timeage
{
public $y = 0;
public $m = 0;
public $d = 0;
public $age = 0;
public $time = 0;
public function __construct($time)
{
$this-time = $time;
$this-y = date('Y',$this-time);
$this-m = date('m',$this-time);
$this-d = date('d',$this-time);
}
public function getage()
{
$this-age = time() - $this-time;
$this-age = $this-age/60/60/24/365;
return (int)$this-age;
}
public function getconstellation()
{
switch ($this-m)
{
case 1:
if ($this-d 19)
{
$this-constellation = '摩羯座';
return $this-constellation;
}
else
{
$this-constellation = '水瓶座';
return $this-constellation;
}
break;
case 2:
if ($this-d 18)
{
$this-constellation = '水瓶座';
return $this-constellation;
}
else
{
$this-constellation = '双鱼座';
return $this-constellation;
}
break;
case 3:
if ($this-d 20)
{
$this-constellation = '双鱼座';
return $this-constellation;
}
else
{
$this-constellation = '白羊座';
return $this-constellation;
}
break;
case 4:
if ($this-d 19)
{
$this-constellation = '白羊座';
return $this-constellation;
}
else
{
$this-constellation = '金牛座';
return $this-constellation;
}
break;
case 5:
if ($this-d 20)
{
$this-constellation = '金牛座';
return $this-constellation;
}
else
{
$this-constellation = '双子座';
return $this-constellation;
}
break;
case 6:
if ($this-d 21)
{
$this-constellation = '双子座';
return $this-constellation;
}
else
{
$this-constellation = '巨蟹座';
return $this-constellation;
}
break;
case 7:
if ($this-d 22)
{
$this-constellation = '巨蟹座';
return $this-constellation;
}
else
{
$this-constellation = '狮子座';
return $this-constellation;
}
break;
case 8:
if ($this-d 22)
{
$this-constellation = '狮子座';
return $this-constellation;
}
else
{
$this-constellation = '处女座';
return $this-constellation;
}
break;
case 9:
if ($this-d 22)
{
$this-constellation = '处女座';
return $this-constellation;
}
else
{
$this-constellation = '天秤座';
return $this-constellation;
}
break;
case 10:
if ($this-d 23)
{
$this-constellation = '天秤座';
return $this-constellation;
}
else
{
$this-constellation = '天蝎座';
return $this-constellation;
}
break;
case 11:
if ($this-d 22)
{
$this-constellation = '天蝎座';
return $this-constellation;
}
else
{
$this-constellation = '射手座';
return $this-constellation;
}
break;
case 12:
if ($this-d 20)
{
$this-constellation = '射手座';
return $this-constellation;
}
else
{
$this-constellation = '摩羯座';
return $this-constellation;
}
break;
}
}
public function getzodiac()
{
$this-animals = array('鼠', '牛', '虎', '兔', '龙', '蛇','马', '羊', '猴', '鸡', '狗', '猪');
$this-zodiac = ($this-y - 1900) % 12;
return $this-animals[$this-zodiac];
}
}
$age = strtotime('1993-07-25');
echo $age;
$a = new timeage($age);
echo 'br';
echo $a-y;
echo 'br';
echo $a-m;
echo 'br';
echo $a-d;
echo 'br';
echo $a-time;
echo 'br';
echo $a-age;
echo 'br';
echo $a-getage();
echo 'br';
echo $a-getconstellation();
echo 'br';
echo $a-getzodiac();
//没事干替你写了个全部的功能函数 写代码类 记得给好评
关于如何用php判断年份生肖和如何用php判断年份生肖属性的介绍到此就结束了,不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息,记得收藏关注本站。
与本文内容相关的文章: