JavaScript, PHP denklem

0 Cevap php

Ben şimdi PHP dönüştürmek için çalışıyorum, bu JavaScript denklemi var.

JavaScript:

LVL=new Array(); 
LVL[1]=128; 
LVL[0]=128; 
m=.05; 
for (i=1;i<101;i++) { 
    if (i>1) { 
        LVL[i]=Math.floor(LVL[i-1]+(LVL[i-1]*m));
        m=m+.0015; 
    }
}

o document.writes bir table ve bir for loop bir grup bulunuyor.

İşte ben bugüne kadar (çalışma değil) ne var:

<?php
$n = 1; // level
$m = .05; // exp modifier
$exp = floor($n*1+($n-1)*$m);
echo "Level " . $n . ", exp needed: " . $exp; // 128 exp
?>

PHP çıktısı: Level 1, exp needed: 1 ve bu YANLIŞ.

Bu SHOULD ki: Level 1, exp needed: 128

Ben yanlış ne yapıyorum?

0 Cevap