Does anyone know what's wrong with this?
code:
class bin2dec{
function main($invoer){
if(isset($invoer) && $invoer != ""){
$this->substr($invoer);
}else{
die("ERROR 0x001");
}
}
function substr($invoer){
for($i=0; $i<strlen($invoer); $i++){
$uitvoer[] = substr($invoer,$i,1);
}
$this->calculate($uitvoer);
}
function calculate($invoer){
$pw=count($invoer) - 1;
for($i=0; $i<count($invoer); $i++){
$uitvoer[] = $invoer[$i] * pow(2, $pw);
$pw--;
}
$this->addall($uitvoer);
}
function addall($invoer){
$uitvoer=0;
for($i=0; $i<count($invoer); $i++){
$uitvoer = $invoer[$i] + $uitvoer;
}
$this->returnit($uitvoer);
}
function returnit($invoer){
return $invoer;
//die("Success ofzow");
}
}
That return on the end doesn't work
If I use that die it dies normally...
MyBB wrecks the indents