일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- html
- codeigniter
- 자바
- 맥
- Stock
- 공모주
- 6월 공모주 청약 일정
- 자바스크립트
- java
- SQL
- Oracle
- jquery
- 오라클
- 주식
- 공모주 청약 일정
- Stock ipo
- 제이쿼리
- php
- 주식 청약 일정
- JavaScript
- 주식 청약
- css
- Eclipse
- 7월 공모주 청약 일정
- MYSQL
- IPO
- 리눅스
- linux
- 공모주 청약
- 코드이그나이터
- Today
- Total
목록개발/php (530)
개발자의 끄적끄적
[PHP] MySQL 레코드 가져오기 (mysqli_fetch_assoc) [펌] - PHP mysqli_fetch_assoc 란? mysqli_fetch_assoc 함수는 mysqli_query 를 통해 얻은 리절트 셋(result set)에서 레코드를 1개씩 리턴해주는 함수입니다. 레코드를 1개씩 리턴해주는 것은 mysqli_fetch_row 와 동일하지만 mysqli_fetch_assoc 함수가 리턴하는 값은 연관배열이라는 점이 틀립니다. - PHP mysqli_fetch_assoc 사용방법 mysqli_fetch_assoc([리절트 셋]); - 테이블 정보 DB명 test_db 테이블명 test_table - test_table 레코드 정보 seq name 1 홍길동 2 일지매 3 임꺽..
[php] mysqli 를 이용한 접속 예제 소스 $servername = "localhost"; $username = "username"; $password = "password"; // Create connection $conn = new mysqli($servername, $username, $password); // Check connection if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); } echo "Connected successfully"; Simplified $conn = mysqli_connect('localhost', 'username', 'password'); $database = mys..
[PHP] 한글 포함한 문자열 자르기 mb_substr [펌] PHP에서 문자열을 원하는 길이만큼 자르는 함수에는 substr이라는 함수가 있습니다. 하지만 영문 byte를 기준으로 자르기 때문에 한글 문자열을 자르려다 보면 글자가 깨지는 현상이 일어납니다. 따라서 특정 인코딩이나 한글을 포함한 문자열을 자를 때에는 mb_substr 함수를 사용합니다. PHP 한글 포함한 문자열 자르기 mb_substr 아래와 같이 호출하면 잘린 문자열을 반환합니다. mb_substr(자를 문자열 , 어디서부터 자를 것인지, 얼마나 자를건지); 어디서부터 자를 것인지 부분은 0부터 시작합니다. ex) echo mb_substr("안녕하세요.", 0, 2); 출력값 ) 안녕 사용할 특정 인코딩 방법을 지정할 수도 있습니다..
[php] file upload error 체크 방법
[php] CentOS7 + nginx + PHP7 + codeIgniter 세팅기[펌] 어렵지 않은걸 어렵게 돌아갔다.. 우선 nginx + php7 설치 후 연동까지는 많은 블로그들에 정보가 있다. 중요한점은 /etc/nginx/conf.d/*.conf 파일의 아래부분에 unix:/var/run/php-fpm/php-fpm.sock;와 /etc/php-fpm.d/www.conf 설정에 listen = /var/run/php-fpm/php-fpm.sock 이 동일해야한다는것정도 location ~ \.php$ { 72 fastcgi_split_path_info ^(.+\.php)(/.+)$; 73 fastcgi_index index.php; 74 fastcgi_pass unix:/var/run/php-..
[php] nginx / codeigniter index.php 죽이기 설정 참고 URL 아래 링크를 통해서 index.php 죽이기 세팅을 간편하게 했다는 분들이 많아서 퍼왔습니다! 세팅에 도움들 되시길!! 링크 : www.farinspace.com/codeigniter-nginx-rewrite-rules/
[php] nginx index.php 제거 방법 nginx index.php 제거 방법 링크 입니다. 공식사이트에 나온 방법을 참고하여 작업하면 됩니다. 참고들하세요! 링크 : www.nginx.com/resources/wiki/start/topics/recipes/codeigniter/ Codeigniter | NGINX Codeigniter A powerful PHP framework with a very small footprint. Recipe server { server_name domain.tld; root /var/www/codeignitor; index index.html index.php; # set expiration of assets to MAX for caching location..
[php/nginx] nginx codeigniter 설정 Nginx에서 CodeIgniter를 위한 nginx.conf 파일 설정 server { listen 80; # IPv4 server_name localhost; ## Parametrization using hostname of access and log filenames. access_log logs/localhost_access.log; error_log logs/localhost_error.log; ## Root and index files. root html; index index.php index.html index.htm; ## If no favicon exists return a 204 (no content error). locati..