Horje
financial year calculation in php Code Example
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;
}




Php

Related
laravel get biggest id Code Example laravel get biggest id Code Example
get the user detail inside the constructor Laravel Code Example get the user detail inside the constructor Laravel Code Example
php md5 password is insecure Code Example php md5 password is insecure Code Example
$_get and $_post in php Code Example $_get and $_post in php Code Example
yii1 findall as array listData Code Example yii1 findall as array listData Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8