(Created page with "{{smcfunc |function=htmltrim |usage=$smcFunc['htmltrim'] (string) |description=Works similar to the php function [http://php.net/manual/en/function.trim.php trim()], additionally...") |
m (Show ) |
||
Line 2: | Line 2: | ||
|function=htmltrim | |function=htmltrim | ||
|usage=$smcFunc['htmltrim'] (string) | |usage=$smcFunc['htmltrim'] (string) | ||
|description=Works similar to the php function [http://php.net/manual/en/function.trim.php trim()], additionally also HTML spaces (e.g. | |description=Works similar to the php function [http://php.net/manual/en/function.trim.php trim()], additionally also HTML spaces (e.g.  ) are trimmed. | ||
|parameters={{parmdesc | |parameters={{parmdesc | ||
|string|d1=the string that will be trimmed. | |string|d1=the string that will be trimmed. |
Revision as of 22:31, 14 December 2011
Usage:
$smcFunc['htmltrim'] (string)
Description: Works similar to the php function trim(), additionally also HTML spaces (e.g. ) are trimmed.
Parameters:
- string the string that will be trimmed.
Return: the trimmed string.
Example:
$result = $smcFunc['htmltrim'](' This is the string I want to trim ');