점으로 구분된 문자열을 중첩 배열로 변환
"Main.Sub. SubOfSub" 및 "SuperData"와 같은 해당 값의 목표는 이 데이터를 실제 중첩 배열로 변환하는 것입니다.
이 변환을 달성하기 위한 자세한 솔루션은 다음과 같습니다.
$key = "Main.Sub.SubOfSub"; $target = array(); $value = "SuperData"; $path = explode('.', $key); // Split the string into an array of keys $root = &$target; // Reference to the main array while (count($path) > 1) { // Iterate through the path array $branch = array_shift($path); // Get the current branch if (!isset($root[$branch])) { $root[$branch] = array(); // Create the branch if it doesn't exist } $root = &$root[$branch]; // Update the reference to the current branch } $root[$path[0]] = $value; // Set the value at the end of the path
이 코드는 문자열에 지정된 경로를 기반으로 중첩 배열을 효과적으로 생성합니다. $root 변수는 배열 내의 현재 중첩 레벨에 대한 참조 역할을 하여 경로를 탐색할 때 값이 올바른 분기에 할당되도록 합니다.
위 내용은 점으로 구분된 문자열을 중첩 배열로 변환하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!