4
I’m having trouble creating a function to duplicate pay, my scenario is this, I want to move to function 3 variables, being the valueTotal, qtyParcelas and firstVencing and if there is more than one portion an array is created informing the next maturities as follows the function I am trying to develop.
function DesdobraParcelas($ValorTotal, $QtdeParcelas, $DataPrimeira){
if ($QtdeParcelas > 1){
//se a quantidade parcelas for maior que 1 declaro o array e informo a data do primeiro vencimento
$array = array();
$array[] = $DataPrimeira;
for($i = 1; $i <= $QtdeParcelas; $i++){
//agora dentro do array queri inserir os próximos vencimentos incrementando de 30 em 30 dias
$array[] = $array[] + date('Y-m-d', strtotime('+30 days', strtotime($array[$i-1])));
}
} else {
//caso haja apenas uma parcela a mesma é inserida no array e retornada
$array[] = $DataPrimeira;
}
return $array; }
print_r(DesdobraParcelas(200.00, 2, '2016-12-15'));
Could you help me or find another way to solve this problem? thank you.
which is appearing?
– RFL