일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- jw player
- 영카트
- CI3
- php
- 웹 프로그래밍
- ajax
- config
- phpDocumentor
- 라이렌
- 함수
- rairen
- CodeIgniter
- 옵션표
- html
- APK
- 코드이그나이터
- API
- jquery
- 설정
- javascript
- codeigniter3
- Database
- FCM
- MSsql
- mysql
- 안드로이드
- 후크
- 헬퍼
- 그누보드
- function
- Today
- Total
목록전체 글 (70)
프로그램 개발서
PHP 버전이 5.4인데 푸시 알림을 보내려면 http v1 으로 마이그레이션을 해야하는 상황! 하지만 인터넷 검색하면 초반에 나오는 내용은 php7나 8등의 상위버전 내용이라서 원하는 내용을 찾을 수 없었다. 여러가지를 알아보다 내가 사용한 방법으로 php-jwt를 이용한 방법이다. 1. 깃 허브 파이어베이스 레포지터리 중 php-jwt를 들어가서 자신의버전에 맞는 버전을 찾아 다운받는다.나의 경우 php 5.4.16 버전에서 사용가능한 버전이 필요한 상황릴리즈를 확인해보니6.1버전부터 PHP >= 7.1이상만 지원하고 그 밑으로는 지원이 중단된 상황!따라서 6.0.0 버전을 다운로드!GitHub - firebase/php-jwt: PHP package for JWT 2. 다운로드 jwt를 압출풀고 ..
Gnuboard5의 에디터로 들어가있는 cheditor5 에 대한 기록입니다. 이윰빌더 시즌4 에서 게시판 에드온 기능으로 이모티콘이 있습니다. 이윰빌더를 쓰려고할 때 이모티콘이 에디터에 추가되지 않는 것을 확인할 수 있을 것이다.그 이유는 에디터 내에 추가하는 함수에서 cheditor에 대한 처리가 없기 때문인데, 그러므로 수정을 해줘야만 이윰빌더 이모티콘을 에디터에 삽입할 수 있다. 기존 내용 추가 함수function set_textarea_contents(type,value) { var type_text = ''; var content = ''; switch(type) { case 'emoticon': type_text = '이모티콘'; break; ca..
JS 를 다루면서 가끔가다 보면 잘 잊는 경우가 있어 메모해둘 겸 작성하는 Tip 을 전송하는데 있어서 내부의 요소에 대한 유효성 검사를 js로 검사할 경우 보통 submit 이벤트에 바인딩하여 유효성 검사를 진행한다. 그리고 요소 중 특정 요소의 경우에는 ajax 를 통해 유효성 검사를 하는 경우가 있는데, 이 때 ajax를 사용할 떄 일반적으로 비동기적으로 통신을 하는데, 비동기식으로 통신하여체크하게 될 경우에 문제가 있다. 바로 ajax통신 하고 있는데 폼은 전송하여 페이지가 넘어가버리는 경우! 이 경우에는 ajax를 동기식으로 통신하도록 설정하도록 하자. ex) jQuery $.ajax({ url : '', type : '', data : {}, dataType : '', async : false..
1. CodeIgniter 4 Download 다운로드 링크 : Welcome to CodeIgniter Welcome to CodeIgniter CodeIgniter 3 is the legacy version of the framework, intended for use with PHP 5.6+. This version is in maintenance, receiving mostly just security updates, and the current version is 3.1.13. codeigniter.com 2. Codeigniter 4 FTP Upload 3. `env` 파일의 파일명을 `.env` 로 변경하기 단, 각 설정을 env 파일을 통해 하실 경우 변경하시면 됩니다. env파일을 사용하..
원문 https://manual.phpdoc.org/HTMLSmartyConverter/PHP/phpDocumentor/tutorial_tags.todo.pkg.html @todo @todo Document changes that will be made in the future Gregory Beaver Copyright 2002, Gregory Beaver (phpDocumentor 1.0+) @todo information string [unspecified format] DescriptionUse @todo to document planned changes to an element that have not been implem manual.phpdoc.org @todo 향후 발생할 변경 사항을 문서..
원문 https://manual.phpdoc.org/HTMLSmartyConverter/PHP/phpDocumentor/tutorial_tags.version.pkg.html @version @version Version of current element Gregory Beaver Copyright 2002, Gregory Beaver (phpDocumentor 0.1+) @version versionstring [unspecified format] DescriptionDocuments the version of any element, including a page-level block NEW v1.2 - @version is now inhe manual.phpdoc.org @version 설명 페이지 ..
원문 https://manual.phpdoc.org/HTMLSmartyConverter/PHP/phpDocumentor/tutorial_tags.abstract.pkg.html @abstract @abstract Document an abstract class or method Gregory Beaver Chuck Burgess Copyright 2002, Gregory Beaver (phpDocumentor 1.1+) @abstract DescriptionUse the @abstract tag to declare a class as abstract, as well as for declaring what methods must be redefin manual.phpdoc.org @abstact phpDo..
1. onlyNumber(className) /** * 클래스 명 입력하여 지정가능 */ function onlyNumber(className = 'onlyNumber'){ className = '.' + classname; const onlyNumberEl = document.querySelectorAll(className); onlyNumberEl.forEach(function(el, idx){ el.addEventListener('keydown', function(keyboardEvent){ // 상단 숫자 0 ~ 9 if(keyboardEvent.which >= 48 && keyboardEvent.which = 96 && keyboardEvent.which