docs(10_Wiki): Dev 폴더 누락분 반영 — Topic_Programming으로 통합
이전 재구성 작업에서 Dev/ 폴더가 누락되었던 것을 반영. - Dev/Topic_Programming(중첩 폴더, 78개)은 Dev 자체 최상위 폴더들 (Architecture/Conventions/Engineering_Intelligence 등)과 완전 중복이라 제거. - Dev 최상위 엔지니어링 지식 폴더(Architecture/Conventions/Engineering_Intelligence/ Failure_Library/Generalized_Principles/Language/Pattern_Catalog/Platform_Guides/ Subsystems, 77개)는 이미 Topic_Programming/Topic_Programming에 더 최신 버전이 존재해 중복 제거(고유 콘텐츠 1개는 예외 처리하여 이동 보존). - Dev의 W3Schools 언어 튜토리얼 폴더(Topic_C/CPP/CSS/CSharp/HOWTO/HTML/Java/ JavaScript/PHP/Python/SQL/W3CSS, 1201개)는 전부 Topic_Programming 하위로 이동. - 에이전트 운영 상태(.astra/docs)는 그대로 유지, 콘텐츠 폴더만 정리. - Topic_Programming 최종 문서 수: 2784 → 3985.
This commit is contained in:
@@ -0,0 +1,75 @@
|
||||
---
|
||||
id: php-arrays-multidimensional
|
||||
title: "PHP Arrays Multidimensional"
|
||||
category: "Programming_Language"
|
||||
status: "draft"
|
||||
verification_status: "conceptual"
|
||||
canonical_id: ""
|
||||
aliases: ["multidimensional arrays", "PHP 다차원 배열"]
|
||||
duplicate_of: ""
|
||||
source_trust_level: "B"
|
||||
confidence_score: 0.9
|
||||
created_at: 2026-07-04
|
||||
updated_at: 2026-07-04
|
||||
review_reason: ""
|
||||
merge_history: []
|
||||
tags: ["php", "programming", "w3schools", "arrays", "multidimensional"]
|
||||
raw_sources: ["https://www.w3schools.com/php/php_arrays_multidimensional.asp"]
|
||||
applied_in: []
|
||||
github_commit: ""
|
||||
---
|
||||
|
||||
# [[PHP Arrays Multidimensional]]
|
||||
|
||||
## 🎯 한 줄 통찰 (One-line insight)
|
||||
PHP explicitly warns that arrays nested more than THREE levels deep become "hard to manage for most people" — even though PHP technically supports arbitrary nesting depth, the tutorial itself sets a practical human-comprehension limit rather than a technical one. [S1]
|
||||
|
||||
## 🧠 핵심 개념 (Core concepts)
|
||||
- **Multidimensional array** — an array containing one or more arrays. [S1]
|
||||
- **Two-dimensional array** — an array of arrays, needing TWO indices (row, column) to reach an element. [S1]
|
||||
- **Dimension = index count** — a 3D array needs 3 indices per element, and so on. [S1]
|
||||
- **Nested loops for traversal** — a `for` inside a `for`, or `foreach` inside a `foreach`, to visit every cell. [S1]
|
||||
|
||||
## 📖 세부 내용 (Details)
|
||||
- 2D array representing a table: `$cars = array( array("Volvo", 22, 18), array("BMW", 15, 13), array("Saab", 5, 2), array("Land Rover", 17, 15) );`. [S1]
|
||||
- Element access with two indices: `echo $cars[0][0].": In stock: ".$cars[0][1].", sold: ".$cars[0][2].".<br>";`. [S1]
|
||||
- Nested for loops: `for ($row = 0; $row < 4; $row++) { for ($col = 0; $col < 3; $col++) { echo $cars[$row][$col]; } }`. [S1]
|
||||
- Nested foreach loops building an HTML table: `foreach ($cars as $row) { foreach ($row as $cell) { echo "<td>" . $cell . "</td>"; } }`. [S1]
|
||||
|
||||
## ⚖️ 모순 및 업데이트 (Contradictions & updates)
|
||||
- **실용적 깊이 제한 경고**: PHP는 다차원 배열을 기술적으로 무제한 지원하지만, 3단계 이상 중첩은 대부분 사람에게 관리하기 어렵다고 명시적으로 경고함. [S1]
|
||||
|
||||
## 🛠️ 적용 사례 (Applied in summary)
|
||||
현재 발견된 실제 적용 사례가 없습니다 — 자동차 재고/판매 테이블을 2차원 배열로 표현하고 HTML 테이블로 렌더링하는 것이 대표 실전 사례다. [S1]
|
||||
|
||||
## 💻 코드 패턴 (Code patterns)
|
||||
Nested foreach building an HTML table from a 2D array (PHP):
|
||||
```php
|
||||
echo "<table>";
|
||||
foreach ($cars as $row) {
|
||||
echo "<tr>";
|
||||
foreach ($row as $cell) {
|
||||
echo "<td>" . $cell . "</td>";
|
||||
}
|
||||
echo "</tr>";
|
||||
}
|
||||
echo "</table>";
|
||||
```
|
||||
|
||||
## ✅ 검증 상태 및 신뢰도
|
||||
- **상태:** draft
|
||||
- **검증 단계:** conceptual
|
||||
- **출처 신뢰도:** B (W3Schools — widely used educational reference, not a primary standards body)
|
||||
- **신뢰 점수:** 0.90
|
||||
- **중복 검사 결과:** 신규 생성 (New discovery)
|
||||
|
||||
## 🔗 지식 그래프 (Knowledge Graph)
|
||||
- **상위/루트:** [[PHP Tutorial]]
|
||||
- **관련 개념:** [[PHP Arrays Sort]], [[PHP Arrays Functions]], [[PHP Looping For]]
|
||||
- **참조 맥락:** 2차원 이상 배열 구조 — 배열 함수(Functions) 챕터로 이어짐.
|
||||
|
||||
## 📚 출처 (Sources)
|
||||
- [S1] W3Schools — PHP Multidimensional Arrays — https://www.w3schools.com/php/php_arrays_multidimensional.asp
|
||||
|
||||
## 📝 변경 이력 (Change history)
|
||||
- 2026-07-04: Initial draft synthesized from the W3Schools "PHP Multidimensional Arrays" page (Astra wiki-curation, P-Reinforce v3.1 format).
|
||||
Reference in New Issue
Block a user