我有两种方法。如果键找到了get_value_from_raw_data方法,则该方法应返回一个值,但始终返回false。
public function get_value_from_raw_data($associative_key , $haystack) {
foreach ($haystack as $key => $value) {
if (! is_array($value)) {
if ($key === $associative_key) {
return $value;
} else {
continue;
}
} else if (is_array($value)) {
$this->get_value_from_raw_data($associative_key , $haystack[$key]);
}
}
return false;
}
private function convert_value($value) {
$new_value = $this->get_value_from_raw_data($value['associative_key'] , $this->raw_data);
if ($value['path_to'] !== "") {
$paths = explode('.' , $value['path_to']);
$temp = &$this->used_model;
foreach ($paths as $key) {
$temp = &$temp[$key];
}
$temp[$value['key_name']] = $new_value;
} else {
$this->used_model[$value['key_name']] = $new_value;
}
}
此外,如果我在返回之前在此方法中使用dd,那么它将显示该值,而返回之后它已经消失了。
答案 0 :(得分:0)
对函数进行递归调用时不会返回值:
else if (is_array($value)) {
$this->get_value_from_raw_data($associative_key , $haystack[$key]);
}
应为:
else if (is_array($value)) {
return $this->get_value_from_raw_data($associative_key , $haystack[$key]);
}