The ftp_get() function is an inbuilt function in PHP which is used to get or download files from FTP server to local server or machine.… Read More
Tag Archives: PHP-function
The ftp_mdtm() function is an inbuilt function in PHP which is used to get time when the file on FTP server was last modified. Syntax: … Read More
The Ds\Map::ksort() function is an inbuilt function in PHP, which is used to sort the map element in-place by key. Syntax: void public Ds\Map::ksort ([… Read More
The Ds\Map::skip() function is an inbuilt function in PHP, which is used to return the pair at a given positional index. Syntax: Ds\Pair public Ds\Map::skip… Read More
The Ds\Map::values() function is an inbuilt function in PHP which is used to return a sequence of the map’s values. Syntax: Ds\Sequence public Ds\Map::values (… Read More
The Ds\Map::putAll() function is an inbuilt function in PHP, which is used to associates all key-value pairs of a traversable object or array. Syntax: void… Read More
The Ds\Map::put() function is an inbuilt function in PHP, which is used to associates a key with a value. Syntax: void public Ds\Map::put( $key, $value… Read More
The Ds\Sequence::reversed() function is an inbuilt function in PHP which is used to return the reverse copy of sequence element. Syntax: Ds\Sequence abstract public Ds\Sequence::reversed… Read More
The Ds\Sequence::rotate() function is an inbuilt function in PHP which is used to rotate the sequence element by a given number of rotations. Syntax: void… Read More
The Ds\Sequence::set() function is an inbuilt function in PHP which is used to updates a value at a given index. Syntax: void abstract public Ds\Sequence::set… Read More
The Ds\Vector::__construct() function is an inbuilt function in PHP which is used to creates a new instance. Syntax: public Ds\Vector::__construct( $values ) Parameters: This function… Read More
The Ds\Vector::reverse() function is an inbuilt function in PHP which is used to reverse the vector elements in-place. Syntax: void public Ds\Vector::reverse( void ) Parameters:… Read More
The Ds\Sequence::reverse() function is an inbuilt function in PHP which is used to reverse the sequence in-place. Syntax: void abstract public Ds\Sequence::reverse ( void )… Read More
The Ds\Sequence::remove() function is an inbuilt function in PHP which is used to remove and return a value by index. Syntax: mixed abstract public Ds\Sequence::remove… Read More
The Ds\Sequence::reduce() function is an inbuilt function in PHP which is used to reduce the sequence to a single value using a callback function. Syntax:… Read More