function date_seconds in Date 6
Same name and namespace in other branches
- 5.2 date_api.module \date_seconds()
- 6.2 date_api.module \date_seconds()
- 7.3 date_api/date_api.module \date_seconds()
- 7 date_api/date_api.module \date_seconds()
- 7.2 date_api/date_api.module \date_seconds()
An array of seconds.
Parameters
string $format:
$required: If not required, returned array will include a blank value.
Return value
array an array of seconds in the selected format.
1 call to date_seconds()
- date_parts_element in ./
date_api_elements.inc - Create form elements for one or more date parts.
File
- ./
date_api.module, line 293 - This module will make the date API available to other modules. Designed to provide a light but flexible assortment of functions and constants, with more functionality in additional files that are not loaded unless other modules specifically include them.
Code
function date_seconds($format = 's', $required = FALSE, $increment = 1) {
$seconds = array();
// Have to be sure $increment has a value so we don't loop endlessly;
if (empty($increment)) {
$increment = 1;
}
for ($i = 0; $i < 60; $i += $increment) {
$seconds[$i] = $i < 10 && $format == 's' ? "0{$i}" : $i;
}
$none = array(
'' => '',
);
return !$required ? $none + $seconds : $seconds;
}