Answers for "php get current year and month"

PHP
8

php get current year

// get current year using php
<?php echo date("Y"); ?>
Posted by: Guest on August-03-2020
14

php get current year

$currentYear=date("Y");//2019
Posted by: Guest on October-30-2019
1

get current month php

current month
  //half name in words
  date('M');
//full name in words
date('F');
//number
date('m');
Posted by: Guest on July-30-2020
2

get current month php

date('m');
Posted by: Guest on May-25-2020

Code answers related to "php get current year and month"

Browse Popular Code Answers by Language