```
<?php
// somas os valores de um vetor e retorna a soma
$vetor = array(1,2,3,4,5,6,7); $soma = 0;
function funSomaVetor($v) { for ($i=0; $i < sizeof($array); $i++) { $soma = $soma + $v[$i]; } return $soma; }
$resultado = funSomaVetor($vetor); echo $resultado
?>
Call Stack
Time Memory Function Location
1 0.0009 134032 {main}( ) ..\SomaVetor.php:0 2 0.1245 134888 funSomaVetor( ) ..\SomaVetor.php:15
! ) Notice: Undefined variable: soma in C:\wamp\www\loja\SomaVetor.php on line 12 Call Stack
Time Memory Function Location
1 0.0009 134032 {main}( ) ..\SomaVetor.php:0 2 0.1245 134888 funSomaVetor( ) ..\SomaVetor.php:15
Esperando resposta, por favor, lembro que tenho uma dúvida sem resposta.
Atenciosamente,
Antônio.