Böyle bir dizide bir değer olup olmadığını kontrol etmek istiyorum:
function check_value_new ($list, $message) {
foreach ($list as $current) {
if ($current == $message) return true;
}
return false;
}
function check_value_old ($list, $message) {
for ($i = 0; $i < count ($status_list); $i ++) {
if ($status_list[$i] == $$message) return true;
}
return false;
}
$arr = array ("hello", "good bye", "ciao", "buenas dias", "bon jour");
check_value_old ($arr, "buenas dias"); // works but it isn't the best
check_value_new ($arr, "buenas dias"); // argument error, where I'm wrong?
Ben check_value_new
yöntemi diziler ile çalışmak için daha iyi bir yoldur, ama ben onunla çalışmak için kullanılan değilim, nasıl bunu düzeltmek gerekir okudunuz?