Htmltrim: Difference between revisions From Online Manual

Jump to: navigation, search
(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. <nowiki>&nbsp;</nowiki>) are trimmed.
|description=Works similar to the php function [http://php.net/manual/en/function.trim.php trim()], additionally also HTML spaces (e.g. &amp;nbsp;) 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. &nbsp;) are trimmed.

Parameters:

  • string the string that will be trimmed.

Return: the trimmed string.

Example:

$result = $smcFunc['htmltrim']('&nbsp;This is the string I want to trim ');



Advertisement: