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
- javascript
- 우분투
- php 시큐어코딩
- 안드로이드 푸시
- Android
- mysql
- 설치
- android 효과음
- PHP
- dovecot
- 안드로이드
- 자동 생성
- soundpool
- not working
- 자바스크립트
- FCM
- html5
- C#
- 안드로이드 푸쉬
- chart.js
- xe
- WebView
- C# IO
- Mail Server
- 폼메일
- UML
- curl
- 안드로이드 gcm
- php 취약점
- roundcube
Archives
- Today
- Total
목록Continue (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