Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- dovecot
- 자바스크립트
- FCM
- html5
- php 취약점
- UML
- soundpool
- C#
- WebView
- C# IO
- 안드로이드 gcm
- 폼메일
- roundcube
- Android
- 자동 생성
- not working
- xe
- mysql
- 안드로이드
- chart.js
- 안드로이드 푸시
- javascript
- android 효과음
- 우분투
- php 시큐어코딩
- 안드로이드 푸쉬
- Mail Server
- PHP
- 설치
- curl
Archives
- Today
- Total
목록continue 2 (1)
그러냐
php continue Warning 뜨는 경우
Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in ... 이런 메세지 뜨는 경우 php 7.3? 이상인 경우 www.php.net/manual/en/control-structures.continue.php 여기를 참조 해보면 continue 가 어느 단계의 continue인지 명확히하라는 의미 같다 예를 들어 for(){ for(){ continue; } } 이런 경우 첫 번째 loop의 contine인지 두번째 loop의 continue 인지 명확히하라는 그래서 for(){ for(){ continue 2; } } for(){ for(){ for(){ continue 3; }..
php
2020. 11. 5. 16:32