This article mainly introduces PHP methods for date operation and process control. Interested friends can refer to it. I hope it will be helpful to everyone.
The example of this article describes how PHP displays the zodiac sign based on the date. The specific implementation method is as follows:
<?php function zodiac($DOB){ $DOB = date("m-d", strtotime($DOB)); list($month,$day) = explode("-",$DOB); if(($month == 3 || $month == 4) && ($day > 22 || $day < 21)){ $zodiac = "Aries"; } elseif(($month == 4 || $month == 5) && ($day > 22 || $day < 22)){ $zodiac = "Taurus"; } elseif(($month == 5 || $month == 6) && ($day > 23 || $day < 22)){ $zodiac = "Gemini"; } elseif(($month == 6 || $month == 7) && ($day > 23 || $day < 23)){ $zodiac = "Cancer"; } elseif(($month == 7 || $month == 8) && ($day > 24 || $day < 22)){ $zodiac = "Leo"; } elseif(($month == 8 || $month == 9) && ($day > 23 || $day < 24)){ $zodiac = "Virgo"; } elseif(($month == 9 || $month == 10) && ($day > 25 || $day < 24)){ $zodiac = "Libra"; } elseif(($month == 10 || $month == 11) && ($day > 25 || $day < 23)){ $zodiac = "Scorpio"; } elseif(($month == 11 || $month == 12) && ($day > 24 || $day < 23)){ $zodiac = "Sagittarius"; } elseif(($month == 12 || $month == 1) && ($day > 24 || $day < 21)){ $zodiac = "Cpricorn"; } elseif(($month == 1 || $month == 2) && ($day > 22 || $day < 20)){ $zodiac = "Aquarius"; } elseif(($month == 2 || $month == 3) && ($day > 21 || $day < 21)){ $zodiac = "Pisces"; } return $zodiac; } echo zodiac('1986-07-22'); //Valid strtotime date ?>
Summary: The above is the entire content of this article, I hope it can It will be helpful to everyone’s study.
Related recommendations:
Three ways to clear the session in php
Get the pinyin of Chinese characters in the php program Method of initial letter
Usage of switch statement in PHP
The above is the detailed content of PHP methods for date operation and process control. For more information, please follow other related articles on the PHP Chinese website!