Friday, October 17, 2025
HomeLanguagesPHP | DsSequence sum() Function

PHP | Ds\Sequence sum() Function

The Ds\Sequence::sum() function is an inbuilt function in PHP which is used to return the sum of all values of the sequence.

Syntax:

number abstract public Ds\Sequence::sum( void )

Parameters: This function does not accept any parameters.

Return value: This function returns the sum of all sequence elements in form of integer or float.

Below programs illustrate the Ds\Sequence::sum() function in PHP:

Program 1:




<?php
   
// Create new sequence
$seq =  new \Ds\Vector([5, 7, 8, 14, 23]);
  
// Use sum() function to find 
// the sum of sequence element
var_dump($seq->sum());
  
?>


Output:

int(57)

Program 2:




<?php
   
// Create new sequence
$seq =  new \Ds\Vector([5, 7.5, 8.4, 14, 23]);
  
// Use sum() function to find 
// the sum of sequence element
var_dump($seq->sum());
  
?>


Output:

float(57.9)

Reference: http://php.net/manual/en/ds-sequence.sum.php

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS