-
Created On: 08/08/2020
in PHP Functions
This is equivalent to the chop function in PHP. This will remove the trailing whitespace.
Example
The below example will output the following: Text to Left all this whitespaceText to Right.
%% string = ' all this whitespace ...
-
Created On: 08/08/2020
in PHP Functions
This is equivalent to the chop function in PHP. This will remove the trailing whitespace.
Example
The below example will output the following: Text to Left all this whitespaceText to Right.
%% string = ' all this whitespace ...
-
Created On: 08/08/2020
in PHP Functions
This is equivalent to the exp function in PHP. Calculates the exponent of e. 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 asort function in PHP. This function sorts an array such that array indices maintain their correlation with the array elements they are associated with. This is used mainly when sorting associative arrays where the actual...
-
Created On: 08/08/2020
in PHP Functions
This is equivalent to the array_splice function in PHP. Remove a portion of the array and replace it with something else. 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 array_values function in PHP. Return all the values of 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 array_intersect function in PHP. Returns an array containing all the values of array1 that are present in all the arguments. Note that keys are preserved. To see an example or learn more other PHP functions and PHP p...
-
Created On: 08/08/2020
in PHP Functions
This is equivalent to the array_slice function in PHP. Returns the sequence of elements from the array as specified by the offset and length parameters. To see an example or learn more other PHP functions and PHP programming, visit PHP Documen...
-
Created On: 08/08/2020
in PHP Functions
This is the equivalent to the array_diff function in PHP. Given two arrays this function will compare %%array2 against %%array1 and return an array of values that are present in %%array1 but not present in %%array2.
To see an example or lea...
-
Created On: 08/08/2020
in PHP Functions
This is equivalent to the array_flip function in PHP. Get the value of pi. To see an example or learn more other PHP functions and PHP programming, visit PHP Documentation . ...