Home  >  Article  >  Backend Development  >  PHP basic case 2: Calculating student age

PHP basic case 2: Calculating student age

善始善终
善始善终Original
2020-11-02 22:42:294082browse

1. Requirements Analysis

In order to conveniently, accurately and quickly display the student's age, the system usually automatically calculates it based on the student's date of birth. Next, please use PHP variables to save the student's year, month, and day respectively, and obtain the current year, month, and day through the data function in PHP, and finally calculate the student's age.

For example:

The date of birth is: August 2, 2000

If it is May 2020, the age is 20 years old

If it is October 2020, the age is 19 years old

2. Design ideas

  1. How to define Variables store student information. What are these variables?

  2. #How to define variables to save the year, month, and day of a student’s birth?

  3. #How to get the year, month and date of the current time?

  4. #How to calculate a student’s age from birth to the current year?

  5. #How to determine whether a student has a birthday?

3. Knowledge reserve

1. Introduction to PHP Date/Time

Date/Time function allows you to Get the date and time from the server where the PHP script is running. You can use the Date/Time functions to format dates and times in different ways.

2. Definition and usage

date() function formats the local date and time and returns the formatted date string.

3. Syntax

date(format,timestamp);
Returns a string generated by integer timestamp according to the given format string. If no timestamp is given, the local current time is used. In other words, timestamp is optional and the default value is time().

For details, please read this article: https://www.jb51.net/article/148360.htm

4. Several commonly used parameters

PHP basic case 2: Calculating student age

4. Code implementation

<?php
//定义变量保存学生出生的年、月、日
$stu_by = 2001;
$stu_bm = 8;
$stu_bd = 07;
//获取当前时间的年份、月份和日期
$cur_y = date(&#39;Y&#39;); //4位数字完整表示的年份
$cur_m = date(&#39;n&#39;); //数字表示的月份,没有前导零,1~12
$cur_d = date(&#39;j&#39;); //月份中的第几天,没有前导零,1~31
//计算学生从出生到当前年的周岁
$age = $cur_y - $stu_by;
//判断学生是否已过生日
if($cur_m < $stu_bm || $cur_m==$stu_bm && $cur_d<$stu_bd){
$age--;
}
?>

5. Effect display

Today is November 2, 2020. PHP basic case 2: Calculating student age

PHP basic case 2: Calculating student age

The above is the detailed content of PHP basic case 2: Calculating student age. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn