-
Last Updated: 06/26/2017
in PHP Functions
This is equivalent to the number_format function in PHP. This function can be used to format number entries in your survey.
Parameters
%%value - The number you are formatting.
%%decimals - The number of decimals (default is...
-
Last Updated: 06/26/2017
in PHP Functions
This is equivalent to the iconv function in PHP. Performs a character set conversion on %%string from %%in_charset to %%out_charset.
To see an example or learn more other PHP functions and PHP programming, visit PHP Documentation .
...
-
Last Updated: 06/26/2017
in PHP Functions
This is equivalent to the shuffle function in PHP. Given an array this function will randomly reorder the array. It will evaluate as true on success and false on failure.
To see an example or learn more other PHP functions and PHP program...
-
Last Updated: 06/26/2017
in PHP Functions
This is equivalent to the array_unique function in PHP. Given an array, this function will remove any elements that contain duplicate values and return the deduped array.
To see an example or learn more other PHP functions and PHP program...
-
Last Updated: 06/26/2017
in PHP Functions
This is equivalent to the array_flip function in PHP. Given an array, this function will exchange an element's key with that element's value and return the resulting array.
To see an example or learn more other PHP functions and PHP progr...
-
Last Updated: 06/26/2017
in PHP Functions
This is equivalent to the log function in PHP. Returns the log of %%number. If the optional %%base parameter is specified, log() returns logbase %%number, otherwise log() returns the natural logarithm of %%number.
To see an example or lea...
-
Last Updated: 06/26/2017
in PHP Functions
This is equivalent to the arsort function in PHP. This function sorts an array in reverse order and maintains index association. Elements will be arranged in reverse order when this function has completed.
The %%flag parameter defaults to "S...
-
Last Updated: 06/26/2017
in PHP Functions
This is equivalent to the ksort function in PHP. This function sorts an array by key. In this case, key is the answer option SKU. Elements will be arranged sequentially when this function has completed.
The %%flag parameter defaults to "SORT_...
-
Last Updated: 06/26/2017
in PHP Functions
This is equivalent to the strpos function in PHP. This function returns the numeric position of the first occurrence of %%needle string in the %%haystack string. If the optional %%offset parameter is specified, the search will start this number of...
-
Last Updated: 06/26/2017
in PHP Functions
This is equivalent to the substr function in PHP. This function returns the portion of string specified by the offset and length parameters. If start is non-negative, the returned string will start at the start position in string, counting from...