Skip to content

Instantly share code, notes, and snippets.

@mgirouard
Created October 9, 2013 19:33
Show Gist options
  • Save mgirouard/6906933 to your computer and use it in GitHub Desktop.
Save mgirouard/6906933 to your computer and use it in GitHub Desktop.
<?php
$properties = array(
'y' => 'years',
'm' => 'years',
'd' => 'years',
'h' => 'years',
'i' => 'years',
's' => 'years',
);
$formatted = '';
foreach ($properties as $key => $label) {
if (!$value = $dateDiff->$property) continue;
$formatted = "$value $label";
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment