PHP | Ds\Vector __construct() Function Last Updated : 22 Aug, 2019 Comments Improve Suggest changes Like Article Like Report 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 accepts single parameter $values which holds the traversable object or array to use initial values. Below programs illustrate the Ds\Vector::__construct() function in PHP: Program 1: php <?php // Declare a new Vector $vect = new \Ds\Vector(); print_r($vect); // Declare a new set $vect = new \Ds\Vector(['G', 'E', 'K', 'S']); print_r($vect); ?> Output: Ds\Vector Object ( ) Ds\Vector Object ( [0] => G [1] => E [2] => K [3] => S ) Program 2: php <?php // Declare a new vector $vect = new \Ds\Vector([2, 3, 6, 7, 8]); var_dump($vect); // Declare a new vector $vect = new \Ds\Vector([2, 3, 5, 8, 9, 10]); var_dump($vect); ?> Output: object(Ds\Vector)#1 (5) { [0]=> int(2) [1]=> int(3) [2]=> int(6) [3]=> int(7) [4]=> int(8) } object(Ds\Vector)#2 (6) { [0]=> int(2) [1]=> int(3) [2]=> int(5) [3]=> int(8) [4]=> int(9) [5]=> int(10) } Reference: https://www.php.net/manual/en/ds-vector.construct.php Create Quiz Comment R R_Raj Follow 0 Improve R R_Raj Follow 0 Improve Article Tags : Web Technologies PHP PHP-function PHP-ds_vector Explore BasicsPHP Syntax4 min readPHP Variables5 min readPHP | Functions6 min readPHP Loops4 min readArrayPHP Arrays5 min readPHP Associative Arrays4 min readMultidimensional arrays in PHP5 min readSorting Arrays in PHP4 min readOOPs & InterfacesPHP Classes2 min readPHP | Constructors and Destructors5 min readPHP Access Modifiers4 min readMultiple Inheritance in PHP4 min readMySQL DatabasePHP | MySQL Database Introduction4 min readPHP Database connection2 min readPHP | MySQL ( Creating Database )3 min readPHP | MySQL ( Creating Table )3 min readPHP AdvancePHP Superglobals6 min readPHP | Regular Expressions12 min readPHP Form Handling4 min readPHP File Handling4 min readPHP | Uploading File3 min readPHP Cookies9 min readPHP | Sessions7 min read Like