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
Recommended Posts:
- PHP | Ds\Map apply() Function
- PHP | Ds\Deque apply() Function
- PHP | Ds\Sequence apply() Function
- JavaScript | Function Apply
- How to apply !important in CSS?
- What is the difference between call and apply in JavaScript?
- How to apply multiple transform property to an element using CSS ?
- Copy all the attributes of one element and apply them to another with JavaScript
- JavaScript | Reflect.apply() Method
- How to apply border inside a table ?
- JavaScript | handler.apply() Method
- How to apply two CSS classes to a single element ?
- How to apply style to parent if it has child with CSS?
- How to apply CSS property to an iframe ?
- How to apply colored shadow and border properties to a grayscale image?
- How to apply CSS page-break to print a table with lots of rows?
- How to apply animation in D3.js?
- How to apply css property to a child element using JQuery?
- How to dynamically create and apply CSS class in JavaScript ?
- How to get the function name inside a function in PHP ?
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.

