Bir işleve dönmek için ne olduğunu belirlemek, ama ben bunu istediğiniz şekilde çalışmıyor gibi görünüyor için bir if deyimi kullanarak Im.
function DoThis($dogs, $cats){
// do something with dogs, pet them perhaps.
$reg = $dogs[0];
$nate = $dogs[1];
if($cats = "dave"){return $reg;}
if($cats = "tom"){return $nate;}
}
$cats
is a string (if that helps), and when entered it doesn't yield any return.
If i manually set a return, that works, but the above doesnt for some reason.