Arrays
| Operator | Summary |
|---|---|
| append | Returns the input array with appended elements. |
| array | Creates and returns a new array. |
| array_sum | Returns the sum of all elements in an array. |
| begins_with | Checks if an array starts with a specific element/sequence. |
| compare | Compares the contents of two arrays. |
| contains | Checks if an array contains a specific element. |
| ends_with | Checks if an array ends with a specific element or sequence. |
| explode | Splits the input array and returns it as an array of sub-arrays. |
| extract | Returns a portion of the input array. |
| extract_left | Returns a portion of the start of the input array. |
| extract_right | Returns a portion of the end of the input array. |
| hash | Creates and returns a new associative array (a hash). |
| implode | Joins array elements with strings. |
| insert | Inserts an element/sequence at specified position in an array. |
| jh_operator | does what JH wants |
| merge | Merges input and passed arrays into one array. |
| prepend | Returns the input array prepended with specified elements. |
| remove | Returns the input array without some of the original elements. |
| repeat | Returns a repeated version of the input array. |
| reverse | Returns a reversed version of the input array. |
| unique | Returns the input array without duplicate elements. |
Balazs Halasy (09/03/2005 12:59 pm)
Balazs Halasy (09/03/2005 1:11 pm)
Comments
There are no comments.