array_merge_recursive

(PHP 4 >= 4.0.1, PHP 5, PHP 7) Merge two or more arrays recursively array array_merge_recursive ( array $array1 [, array $... ] ) array_merge_recursive() merges the elements of one or more arrays together so that the values of one are appended to the end of the previous one. It returns the resulting array. If the input arrays have the same string keys, then the values for these keys are merged together into an array, an

Imagick::setImageType

(PECL imagick 2.0.0) Sets the image type bool Imagick::setImageType ( int $image_type ) Sets the image type. Parameters: image_type Sets the image type. Returns: Returns TRUE on success.

xml_error_string

(PHP 4, PHP 5, PHP 7) Get XML parser error string string xml_error_string ( int $code ) Gets the XML parser error string associated with the given code. Parameters: code An error code from xml_get_error_code(). Returns: Returns a string with a textual description of the error code, or FALSE if no description was found.

xml_get_error_code

(PHP 4, PHP 5, PHP 7) Get XML parser error code int xml_get_error_code ( resource $parser ) Gets the XML parser error code. Parameters: parser A reference to the XML parser to get error code from. Returns: This function returns FALSE if parser does not refer to a valid parser, or else it returns one of the error codes listed in the error codes se

classkit_method_remove

(PECL classkit >= 0.1) Dynamically removes the given method bool classkit_method_remove ( string $classname, string $methodname ) Note: This function cannot be used to manipulate the currently running (or chained) method. Parameters: classname The class in which to remove the method methodname The name of the method to rem

ReflectionMethod::getModifiers

(PHP 5, PHP 7) Gets the method modifiers public int ReflectionMethod::getModifiers ( void ) Returns a bitfield of the access modifiers for this method. Returns: A numeric representation of the modifiers. The modifiers are listed below. The actual meanings of these modifiers are described in the predefined constants. Examples: Reflectio

SDO_DAS_Setting::getPropertyName

(^) Get the property name for a changed property string SDO_DAS_Setting::getPropertyName ( void ) Returns the property name for the changed property. This name identifies the property which was modified in data object. Returns: The property name for a changed property. This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding do

CairoImageSurface::getData

(PECL cairo >= 0.1.0) Gets the image data as string public string CairoImageSurface::getData ( void ) Returns the image data of this surface or NULL if surface is not an image surface, or if CairoContext::finish(), procedural : cairo_surface_finish(), has been called. Returns: The image data as string Examples: CairoImageSurface::ge

array_combine

(PHP 5, PHP 7) Creates an array by using one array for keys and another for its values array array_combine ( array $keys, array $values ) Creates an array by using the values from the keys array as keys and the values from the values array as the corresponding values. Parameters: keys Array of keys to be used. Illegal values for key will be converted to string.

array_unshift

(PHP 4, PHP 5, PHP 7) Prepend one or more elements to the beginning of an array int array_unshift ( array &$array, mixed $value1 [, mixed $... ] ) array_unshift() prepends passed elements to the front of the array. Note that the list of elements is prepended as a whole, so that the prepended elements stay in the same order. All numerical array keys will be modified to start counting from zero while literal keys won't be