The Wayback Machine - https://web.archive.org/web/20230422153439/https://www.geeksforgeeks.org/php-dsvector-apply-function/
Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

PHP | Ds\Vector apply() Function

Improve Article
Save Article
Like Article
author
barykrg
scholar
281 published articles
Improve Article
Save Article
Like Article

The Ds\Vector::apply() function is an inbuilt function in PHP which is used to update all values in the array by applying the callback function to each value of the vector. After this callback, all the values of the vector will get modified as defined in the callback function.

Syntax:

void public Ds\Vector::apply( $callback )

Parameters: This function accepts a single parameter $callback which is used to update the values in the vector. This callback function should return the value by which vector element is to be replaced.

Return Value: This function does not return any value.

Below programs illustrate the Ds\Vector::apply() function in PHP:

Program 1:




<?php
  
// Declare the callback function
$callback = function($value) {
    return $value / 10; 
};
  
// Declare a vector
$vector = new \Ds\Vector([10, 20, 30, 40, 50]);
  
// Use apply() function to call function
$vector->apply($callback);
  
// Display the vector element
print_r($vector);
?> 

Output:

Ds\Vector Object
(
    [0] => 1
    [1] => 2
    [2] => 3
    [3] => 4
    [4] => 5
)

Program 2:




<?php
  
// Declare the callback function
$callback = function($value) {
    return $value * 5;
};
  
// Declare a vector
$vector = new \Ds\Vector([1, 2, 3, 4, 5]);
  
// Use apply() function to call function
$vector->apply($callback);
  
// Display the vector element
print_r($vector);
?> 

Output:

Ds\Vector Object
(
    [0] => 5
    [1] => 10
    [2] => 15
    [3] => 20
    [4] => 25
)

Reference: http://php.net/manual/en/ds-vector.apply.php


My Personal Notes arrow_drop_up
Last Updated : 22 Aug, 2019
Like Article
Save Article
Similar Reads
Related Tutorials