kevinkhill / php-duration

Convert durations of time between colon-formatted, human-readable, and seconds
MIT License
158 stars 26 forks source link

Add support to decimals anotations ex: 1.7d 1.5h #13

Closed valmirphp closed 5 years ago

valmirphp commented 5 years ago

Examples:

// Configured for 6 hours per day
$duration = new Duration('1.5d 1.5h 2m 5s', 6);

echo $duration->humanize();  // 1d 4h 32m 5s
echo $duration->formatted(); // 10:32:05
echo $duration->toSeconds(); // 37925
echo $duration->toMinutes(); // 632.083333333
echo $duration->toMinutes(null, 0); // 632
kevinkhill commented 5 years ago

Thank you for your contribution! I'm happy you have found a use for this library and added a feature.