Skip to content

Tag Archives: PHP-function

The Gmagick::raiseimage() function is an inbuilt function in PHP which is used to create a simulated three-dimensional button-like effect by creating the lightning and darkening… Read More
The Gmagick::normalizeimage() function is an inbuilt function in PHP which is used to enhances the contrast of a color image by adjusting the color of… Read More
The Gmagick::spreadimage() function is an inbuilt function in PHP which is used to randomly displaces each pixel in a block defined by the variable. Syntax:… Read More
The Gmagick::resampleimage() function is an inbuilt function in PHP which is used to resample the image to the desired resolution.Syntax:   Gmagick Gmagick::resampleimage( $xResolution, $yResolution, $filter,… Read More
The Gmagick::rollimage() function is an inbuilt function in PHP which is used to roll an image.Syntax:   Gmagick Gmagick::rollimage( $x, $y ) Parameters: This function accepts… Read More
The Ds\Collection::isEmpty() function is an inbuilt function in PHP which is used to returns whether collection is empty. Syntax: Ds\Collection::isEmpty ( void ) : bool… Read More
The Ds\Collection::copy() function is an inbuilt function in PHP which is used to returns the copy of collection element. Syntax: Ds\Collection::copy ( void ) :… Read More
The Ds\Collection::clear() function is an inbuilt function in PHP which is used to remove all values from the collection. Syntax: Ds\Collection::clear( void ) Parameters: This… Read More
Given a PHP code and task is to print call stack for this PHP code. In the given PHP code, a child_func() function calls parent_func()… Read More
The ImagickDraw::polyline() function is an inbuilt function in Imagick library of PHP which is used to draw a polyline using the current stroke, stroke width,… Read More
The SplFileObject::rewind() function is an inbuilt function of Standard PHP Library (SPL) in PHP which is used to Rewind the file to the first line.… Read More
The SplFileObject::seek() function is an inbuilt function of Standard PHP Library (SPL) in PHP which is used to seek to specify the line. Syntax: void… Read More
In PHP, callback is a function object/reference with type callable. A callback/callable variable can act as a function, object method and a static class method.… Read More
The SplFileObject fputcsv() function is an inbuilt function of Standard PHP Library (SPL) in PHP which is used write a field array as a CSV… Read More
By default, PHP variables are passed by value as the function arguments in PHP. When variables in PHP is passed by value, the scope of… Read More