Removing first element of the PHP array
array_shift method can be used to remove first element in a PHP array. array_shift method does not return any value, but rather modifies the array in place. array_shift method takes only one argument, this is array name.
Comments
Post a Comment