다차원 배열에서 단일 열 추출
데이터 조작의 맥락에서 복잡한 데이터 구조에서 특정 정보를 추출하는 것은 일반적인 현상입니다. 일. PHP 프로그래머는 다차원 배열에서 특정 열을 검색해야 하는 경우가 종종 있습니다.
테이블을 나타내는 다차원 배열을 생각해 보세요. 각 하위 배열은 행을 나타내고 각 키는 열을 나타냅니다. 예를 들어, "blogTags_id", "tag_name", "inserted_on" 및 "inserted_by"와 같은 키가 있는 배열은 해당 열이 있는 테이블을 나타냅니다.
이제, "tag_name" 열을 쉼표로 구분된 문자열로 연결하면 배열 조작 조합을 사용할 수 있습니다. 함수:
// Sample multi-dimensional array $input = [ [ 'blogTags_id' => 1, 'tag_name' => 'google', 'inserted_on' => '2013-05-22 09:51:34', 'inserted_by' => 2 ], [ 'blogTags_id' => 2, 'tag_name' => 'technology', 'inserted_on' => '2013-05-22 09:51:34', 'inserted_by' => 2 ] ]; // Extract tag names into a new array using array_column (PHP 5.5+) $tagNames = array_column($input, 'tag_name'); // Convert the array to a comma-separated string with implode $output = implode(', ', $tagNames); echo $output; // Output: "google, technology"
PHP 5.5 이전 버전의 경우 array_map과 함께 익명 함수를 사용하여 동일한 결과를 얻을 수 있습니다.
$output = implode(', ', array_map(function ($entry) { return $entry['tag_name']; }, $input));
위 내용은 PHP의 다차원 배열에서 특정 열을 어떻게 추출할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!