Calculate Age from Date of Birth in PHP [ Solution ]

    By: Thad Mertz
    2 years ago

    Ok Here we see how to calculate age from date of birth in php. Explained calculate date of birth from age in php. I’m going to demonstrate you about php age calculation from date of birth. You will learn php calculate age from date of birth to today.

    Here we have a simple example how to calculate age from date of birth in PHP. so let's see :


    Example

    <?php
    
      
    
        $dob='1984-07-01';
    
        $year = (date('Y') - date('Y',strtotime($dob)));
    
      
    
        echo $year;
    
    
    ?>
    

    And we get output

    37