Answers for "how to get financial year in php"

PHP
1

how to get the current year in php

Get the current year using PHP:
  
<?php 
	echo date("Y"); 
?>
Posted by: Guest on October-19-2020
0

financial year calculation in php

function get_finacial_year_range() {
    $year = date('Y');
    $month = date('m');
    if($month<4){
        $year = $year-1;
    }
    $start_date = date('d/m/Y',strtotime(($year).'-04-01'));
    $end_date = date('d/m/Y',strtotime(($year+1).'-03-31'));
    $response = array('start_date' => $start_date, 'end_date' => $end_date);
    return $response;
}
Posted by: Guest on November-10-2021

Browse Popular Code Answers by Language