Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Session
- Regex
- 경영
- composer-php
- function
- Arrays
- date
- jquery
- file-upload
- 웹하드추천
- string
- UTF-8
- Ajax
- Forms
- 무료다운로드쿠폰
- Laravel
- MySQL
- OOP
- curl
- 웹하드순위
- 전략
- variables
- php
- post
- HTML
- Apache
- JSON
- Linux
- JavaScript
Archives
- Today
- Total
개발! 딱 깔끔하고 센스있게!
PHP foreach 루프 키 값 본문
이 db 호출을 실행하고 있습니다나는 모든 열쇠를 얻으려 시도했지만, 나는 그것을 공백이나 배열로 만들려고 시도했다.
$root_array = array(); $sites = $this->sites($member_id); foreach ($sites as $site){ $records = $this->db->select('p.name as place_name, p.id as place_id,p.active as place_status') ->from('places p') ->join('members_permissions pm','pm.sites_id = p.sites_id and pm.members_id ='.$member_id) ->where('p.active', 0) ->get(); $places = $records->result_array(); $places['name'] = $site['name']; foreach($places as $place){ $root_array[$site['name']][] = $place; } } return $root_array;
php 순환입니다:
=key($site)?>
=$place['place_name']?>
또한 내가 테스트를 실행할 때, 그것은 숫자만 뱉는 것이고, 이것이 결과다.
제가 하고 싶은 건 필라델피아...]
[Philadelphia] => Array ( [0] => Array ( [place_name] => XYX [place_id] => 103200 [place_status] => 0 ) [1] => Array ( [place_name] => YYYY [place_id] => 232323 [place_status] => 0 )
대답
배열 키를 이렇게 방문할 수 있습니다:
foreach ($array as $key => $value)
'개발 스크랩 메모 > PHP' 카테고리의 다른 글
떠나는 페이지에서 PHP 세션 파괴 (0) | 2020.12.18 |
---|---|
확장 PHP 클래스의 정적 호출에서 클래스 이름을 얻는 방법은 무엇입니까? (0) | 2020.12.18 |
변수를 헤드 위치 PHP 삽입 (0) | 2020.12.18 |
file_exists ()의 대소 문자를 구분하지 않는 PHP 버전 (0) | 2020.12.18 |
php 세션 시간 추가 (0) | 2020.12.18 |
Comments