Skip to content

Instantly share code, notes, and snippets.

@sepehr
sepehr / get_month_diff.php
Last active May 4, 2020 23:59
PHP: Get month difference between two timestamps
<?php
/**
* Calculates how many months is past between two timestamps.
*
* @param int $start Start timestamp.
* @param int $end Optional end timestamp.
*
* @return int
*/