Мой массив $json
выглядит так:
Array (
[0] => Array ( [poulecode] => 495271
[teamcode] => 277986
[teamnaam] => JO19-1 (0225 Onder 19 competitie (najaar)) )
[1] => Array ( [poulecode] => 500027
[teamcode] => 277986
[teamnaam] => JO19-1 (B3200 Zwaluwen jeugdbeker Onder 19 poule) )
[2] => Array ( [poulecode] => 524572
[teamcode] => 277986
[teamnaam] => JO19-1 (0227 Onder 19 competitie (voorjaar)) )
)
Как я могу выбрать (установить переменную $competitiecode
) из асоциированных poulecode (524572)
путем поиска teamnaam's ( JO19-1 (0227 Onder 19 competitie (voorjaar)) )
содержащий определенную строку «voorjaar»?
Я работал над этим, используя array_filter
а также array_column
но я не могу понять это.
Это часть моего кода до сих пор:
$json = json_decode($content_programma, true);
$Poulecode = array_column($json, 'poulecode');
$Teamnaam = array_column($json, 'teamnaam');
$findme = 'voorjaar';
$key = array_filter($findme, array_column($json, $Teamnaam));
$competitiecode = $Poulecode[$key];
<?php
$array = [
[
"poulecode" => 495271,
"teamcode" => 277986,
"teamnaam" => "JO19-1 (0225 Onder 19 competitie (najaar)) )"], [
"poulecode" => 500027,
"teamcode" => 277986,
"teamnaam" => "JO19-1 (B3200 Zwaluwen jeugdbeker Onder 19 poule) )"], [
"poulecode" => 524572,
"teamcode" => 277986,
"teamnaam" => "JO19-1 (0227 Onder 19 competitie (voorjaar)) )"]
];
$keyword = "voorjaar";
// You can filter your array using array_filter function
$result = array_filter( $array, function( $item ) use ( $keyword ) {
return strpos( $item['teamnaam'], $keyword ) !== false;
});
// and then map result to your datastructure
$result_ids = array_map( function($item){
return $item['poulecode'];
}, $result );
var_dump($result_ids);
Вы можете использовать foreach
цикл:
$find = Array();
$search = 'voorjaar';
foreach($json as $j) {
if (strpos($j['teamnaam'], $search) !== false) {
$find[] = Array(
'poulecode' => $j['poulecode']
);
}
}
Ваш array_filter()
должен получить следующие аргументы:
$keys = array_filter(array_column($json, $Teamnaam), function($item) use ($findme){
if (strpos($item['teamnaam'], $findme) !== false) {
return true;
}
return false;
});
$keys
сейчас это массив