<?php $t = '1'; $format = 'day'; switch ($format){ case 'second': break; case 'seconds': break; case 'minute': $t = $t * 60; break; case 'minutes': $t = $t * 60; break; case 'hour': $t = $t * 60 * 60; break; case 'hours': $t = $t * 60 * 60; break; case 'day' : $t = $t * 60 * 60 * 24; break; case 'days' : $t = $t * 60 * 60 * 24; break; default: $seconds = false; } echo $t;
You have javascript disabled. You will not be able to edit any code.