format_length(<length
in seconds>)
|
Format the specified length
as weeks, days, hours, minutes and seconds
|
format_length_hours(<length
in seconds>) |
Format the specified length
as hours, minutes and seconds |
strpos('<string>',
'<search>') |
Search <search> in
<string> and return the 1-based position. Return 0, if
<search> is not found.
|
padl('<string>',
<length>[, '<filler>'])
|
Pads <string> to the
length <length> with <filler> on the left side.
<filler> is optional and defaults to ' '. If
<filler> contains more than one character,
<filler> will be added as many times as it fits
without exceeding <length>.
|
padr('<string>',
<length>[, '<filler>']) |
Pads <string> to the
length <length> with <filler> on the right side.
<filler> is optional and defaults to ' '. If
<filler> contains more than one character,
<filler> will be added as many times as it fits
without exceeding <length>. |