-
Created On: 08/08/2020
in PHP Functions
This is equivalent to the md5 function in PHP. It returns the MD5 hash of the provided string. Can be used to compare two strings for an exact match by comparing their MD5 hash values.
To see an example or learn more other PHP functions a...
-
Created On: 08/08/2020
in PHP Functions
This is equivalent to the in_array function in PHP. It searches the array %%haystack for %%needle. Setting %%strict to TRUE will also check the type of the needle in the haystack.
To see an example or learn more other PHP functions and PH...
-
Created On: 08/08/2020
in PHP Functions
This is equivalent to the preg_match function in PHP. Use to perform a regular expression match.
To see an example or learn more other PHP functions and PHP programming, visit PHP Documentation .
...
-
Created On: 08/08/2020
in PHP Functions
This is equivalent to the sort function in PHP. This function sorts an array. Elements will be arranged from lowest to highest when this function has completed.
The %%flag parameter defaults to "SORT_REGULAR". See the PHP documentation to lea...
-
Created On: 08/08/2020
in PHP Functions
This is equivalent to the is_array function in PHP. Evaluates as "true" if the variable is an array.
To see an example or learn more other PHP functions and PHP programming visit PHP Documentation .
...
-
Created On: 08/08/2020
in PHP Functions
This is equivalent to the strcasecmp function in PHP. This function will compare %%str1 with %%str2 in a case-insensitive manner when %%case=false. The results are returned as either a negative number (str1 < str2), 0 (match), or a positive numbe...
-
Created On: 08/08/2020
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 .
...
-
Created On: 08/08/2020
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...
-
Created On: 08/08/2020
in PHP Functions
This is equivalent to the strtolower function in PHP. This function returns the given string in all lower case using the PHP function strtolower.
To see an example or learn more other PHP functions and PHP programming, visit PHP Documentati...
-
Created On: 08/08/2020
in PHP Functions
This is equivalent to the print_r function in PHP. Given any variable sgapiPrint_R will display information about a variable in a way that is readable by humans. Use with %%output to output to the page. Very useful when looking at arrays of data o...