How to get Current Month in PHP?
We will use the date function to get the current month in PHP.
1 2 3 4 5 6 7 8 9 10 |
<?php //half name in words echo date('M'); //full name in words echo date('F'); //Month Number echo date('m'); |
We will use the date function to get the current month in PHP.
1 2 3 4 5 6 7 8 9 10 |
<?php //half name in words echo date('M'); //full name in words echo date('F'); //Month Number echo date('m'); |