일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- css
- 6월 공모주 청약 일정
- 맥
- 오라클
- 자바
- 공모주 청약
- 공모주 청약 일정
- IPO
- html
- linux
- php
- 주식
- MYSQL
- SQL
- JavaScript
- 제이쿼리
- 공모주
- 주식 청약 일정
- 주식 청약
- Oracle
- 7월 공모주 청약 일정
- jquery
- 자바스크립트
- 리눅스
- Stock ipo
- 코드이그나이터
- java
- codeigniter
- Eclipse
- Stock
- Today
- Total
목록codeigniter (72)
개발자의 끄적끄적
[php] 10 differences between CodeIgniter 3 and 4 Differences between versions CodeIgniter 4 is very different from 3 and below you will see a little about the main differences between them. #1 - Support for PHP versions To use CodeIgniter 4 the minimum PHP version required is 7.2, while with CodeIgniter 3 it is possible to use from version 5.6 (which has already been completely discontinued). #2..
[php] codeigniter + vue 세팅 [펌] When you need to use Vue.js(Nuxt) on codeigniter, there is no default way on codeigniter. So I solve this problem with .htaccess file. The main concept is just share one root folder. And basically, this concept is for separate frontend and backend. Codigniter for Backend. Vue.js for Frontend. Like this. Project |- application |- frontend (Vuejs) |- system |- web |-..
[php] codeigniter zip 라이브러리 사용법 ## 라이브러리 로드 $this->load->library('zip'); ## 사용방법 $name = 'mydata1.txt'; $data = 'A Data String!'; $this->zip->add_data($name, $data); // Write the zip file to a folder on your server. Name it "my_backup.zip" $this->zip->archive('/path/to/directory/my_backup.zip'); // Download the file to your desktop. Name it "my_backup.zip" $this->zip->download('my_backup.zip'); ..
[PHP] Codeigniter (코드이그나이터) URI Routing [펌] CI의 URI Routing에 대해서 정리합니다. URL Routing이라는 것은 Controller를 정리할 때 잠깐 나왔었습니다. URL Routing은 사용자가 접근 한 URI에 따라서 Controller의 메소드를 호출 해줍니다. 기본 룰은 다음과 같습니다. 인터넷주소/index.php/class명/method명/인자값... 192.168.219.134/Study/index.php/test/some/1 위의 URL은 아래 파일을 로드합니다. /Study/application/controllers/test.php 그리고 some 메소드에 첫번쨰 인자로 1을 전달해 호출하게 됩니다. URI Routing 규칙 변경 URI에..
[php] codeigniter gmail smtp 설정 & 발송하기 [펌] 1. gmail 설정 발송을 원하는 이메일의 환경 설정페이지에 접속한다. 전달 및 POP/IMAP 에서 IMAP 엑세스를 아래와 같이 바꿔준다. 2. codeigniter 설정 $config = array( 'protocol' => "smtp", 'smtp_host' => "ssl://smtp.gmail.com", 'smtp_port' => "465",//"587", // 465 나 587 중 하나를 사용 'smtp_user' => "사용할 이메일주소", 'smtp_pass' => "비밀번호", 'charset' => "utf-8", 'mailtype' => "html", 'smtp_timeout' => 10, ); // gma..
[codeigniter] 코드이그나이터 이메일 환경설정 [펌] 이메일 환경설정 Email Preferences 아래는 이메일 전송시 사용되는 설정 항목입니다. 항목기본값옵션설명 useragent CodeIgniter None The “user agent”. protocol mail mail, sendmail, or smtp 메일전송 프로토콜(The mail sending protocol). mailpath /usr/sbin/sendmail None Sendmail함수의 서버상 경로(The server path to Sendmail). smtp_host No Default None SMTP서버주소(SMTP Server Address). smtp_user No Default None SMTP서버 사용자 아이..
[php] 코드이그나이터 codeigniter file download $this->load->helper('download'); 우선, 위처럼 내장 download helper 를 로드합니다. 파일에 내용을 써서 다운로드 할 경우, $data = 'Here is some text!'; $name = 'mytext.txt'; force_download($name, $data); 기존에 있는 파일을 다운로드 할 경우, $data = file_get_contents("파일 경로"); $name = '다운로드 될 파일명(확장자 포함)'; force_download($name, $data); 위처럼 하면 각각 원하는 파일을 다운로드 할 수 있습니다. 많은 도움들 되시길!!
[php] php framework codeigniter 코드이그나이터 1. 코드이그나이터 공식 홈페이지 https://codeigniter.com/ CodeIgniter Web Framework The latest is Version 3.1.11 codeigniter.com 최근에 4버전을 준비중이고 계속 업데이트가 되고 있네요! php 개발자로써! 4버전은 어떤 업데이트가 될지 궁금합니다!! ㅎㅎ 2. 코드이그나이터 3.0 한글메뉴얼 홈페이지 http://www.ciboard.co.kr/user_guide/kr/ 코드이그나이터 3.0 한글매뉴얼 © Copyright 2014 - 2016, British Columbia Institute of Technology. Last updated on Mar 2..