Tuesday 5 September 2017

Function: Convert Days Into Seconds w/ PHP

## DAYS INTO SECONDS
<?php
function days_to_seconds($days) {
if(is_numeric($days)) {
return 86400*$days;
} else {
return ‘string must be numeric’;
}
}
## PARSE
echo days_to_seconds(8); // NUMBER OF DAYS
## RESULT
// 691200
?>