Open In App

PHP | Ds\Vector apply() Function

Improve
Improve
Like Article
Like
Save
Share
Report

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



Last Updated : 22 Aug, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads