Welcome Guest, Not a member yet? Register   Sign In
Help documenting 3 new functions for CI 1.5.5
#5

[eluser]aart-jan[/eluser]
Some docs for the reduce_multiples function:

Code:
<h2>reduce_multiples()</h2>
<p>Reduces multiple instances of a particular character occuring directly after each other. Example:</p>
<code>
$string="Fred, Bill,, Joe, Jimmy";
$string=reduce_multiples($string,","); //results in "Fred, Bill, Joe, Jimmy"
</code>
<p>The function accepts the following parameters:
<code>reduce_multiples(string: text to search in, string: character to reduce, boolean: whether to remove the character from the front and end of the string)</code>

The first parameter contrains the string in which you want to reduce the multiplies. The second parameter contains the character you want to have reduced.
The third parameter is False by default. If it it's to true it will remove occurences of the character at the beginning and the end of the string. Example:

<code>
$string=",Fred, Bill,, Joe, Jimmy,";
$string=reduce_multiples($string,",",true); //results in "Fred, Bill, Joe, Jimmy"
</code>
</p>


Messages In This Thread
Help documenting 3 new functions for CI 1.5.5 - by El Forum - 12-06-2007, 06:52 AM
Help documenting 3 new functions for CI 1.5.5 - by El Forum - 12-06-2007, 07:52 AM
Help documenting 3 new functions for CI 1.5.5 - by El Forum - 12-06-2007, 07:55 AM
Help documenting 3 new functions for CI 1.5.5 - by El Forum - 12-06-2007, 08:04 AM
Help documenting 3 new functions for CI 1.5.5 - by El Forum - 12-06-2007, 08:07 AM
Help documenting 3 new functions for CI 1.5.5 - by El Forum - 12-06-2007, 08:09 AM
Help documenting 3 new functions for CI 1.5.5 - by El Forum - 12-06-2007, 08:15 AM
Help documenting 3 new functions for CI 1.5.5 - by El Forum - 12-06-2007, 10:19 AM
Help documenting 3 new functions for CI 1.5.5 - by El Forum - 12-06-2007, 01:52 PM
Help documenting 3 new functions for CI 1.5.5 - by El Forum - 12-06-2007, 10:12 PM
Help documenting 3 new functions for CI 1.5.5 - by El Forum - 12-07-2007, 06:42 AM
Help documenting 3 new functions for CI 1.5.5 - by El Forum - 12-07-2007, 10:57 AM
Help documenting 3 new functions for CI 1.5.5 - by El Forum - 12-09-2007, 12:19 PM
Help documenting 3 new functions for CI 1.5.5 - by El Forum - 12-09-2007, 05:53 PM
Help documenting 3 new functions for CI 1.5.5 - by El Forum - 12-09-2007, 07:00 PM
Help documenting 3 new functions for CI 1.5.5 - by El Forum - 12-09-2007, 07:03 PM



Theme © iAndrew 2016 - Forum software by © MyBB