Saturday, September 28, 2024
Google search engine
HomeLanguagesPHP | DsVector apply() Function

PHP | Ds\Vector apply() Function

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

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

RELATED ARTICLES

Most Popular

Recent Comments