PHP basic case 2: Calculating student age
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
How to define Variables store student information. What are these variables?
#How to define variables to save the year, month, and day of a student’s birth?
#How to get the year, month and date of the current time?
#How to calculate a student’s age from birth to the current year?
#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
4. Code implementation
<?php //定义变量保存学生出生的年、月、日 $stu_by = 2001; $stu_bm = 8; $stu_bd = 07; //获取当前时间的年份、月份和日期 $cur_y = date('Y'); //4位数字完整表示的年份 $cur_m = date('n'); //数字表示的月份,没有前导零,1~12 $cur_d = date('j'); //月份中的第几天,没有前导零,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.
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!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
