php简单年龄计算器案例
【摘要】
作者:陈业贵 华为云享专家 51cto(专家博主 明日之星 TOP红人) 阿里云专家博主
文章目录
什么是时间戳?cyg.phpdate.php效果:
什么是时间戳?
...
作者:陈业贵 华为云享专家 51cto(专家博主 明日之星 TOP红人) 阿里云专家博主
什么是时间戳?
时间戳是指格林威治时间1970年01月01日00时00分00秒(北京时间1970年01月01日08时00分00秒)起至现在的总秒数。
cyg.php
<style>
body{
background:#ccc;
}
</style>
<form name="myForm" action="date.php" method="post"><!--提交代码到当前cyg.php的同级目录下date.php-->
年龄计算器
<br>
出生年份:<input type="text" value="" name="year"><br>
出生月份:<input type="text" value="" name="month"><br>
出生天数:<input type="text" value="" name="day"><br>
<input type="submit"><!--提交代码到dete.php中-->
<input type="reset"><!--重新输入,也就是重置-->
</form>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
date.php
<?php
$year = $_POST['year'];//获取年
$month = $_POST['month'];//获取月份
$day = $_POST['day'];//获取日
$birthday = mktime(0,0,0,$month,$day,$year);//比如你输入的是2000年5月18日。那就是(北京时间)1970年01月01日08时00分00秒到2000年5月18日的总秒数.
$nowunix = time();//获取1970年01月01日08时00分00秒到当前时间的时间戳(秒数)
$age = $nowunix - $birthday;//当前时间的时间戳减去某个人生日的时间戳===某个人今年多少岁
$age = floor($age / (365*24*60*60));//然后是向下取整,$age / (365*24*60*60)根据这个算法得出,现在它多少岁了
echo "<script>alert('您的年龄为:".$age."')</script>";
?>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
效果:
文章来源: blog.csdn.net,作者:贵哥的编程之路(热爱分享),版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/qq_37805832/article/details/126916373
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)