일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 주식 청약
- 6월 공모주 청약 일정
- Stock ipo
- SQL
- 자바스크립트
- linux
- jquery
- css
- IPO
- codeigniter
- Oracle
- 오라클
- html
- 공모주
- 맥
- 공모주 청약
- 주식 청약 일정
- 리눅스
- java
- JavaScript
- 자바
- 공모주 청약 일정
- MYSQL
- 제이쿼리
- 7월 공모주 청약 일정
- 주식
- 코드이그나이터
- php
- Stock
- Eclipse
- Today
- Total
목록전체 글 (3196)
개발자의 끄적끄적
[php] is_dir() 폴더 존재 여부 확인 $dir = "/a/b/c"; 위와 같은 경로의 폴더가 존재 하는지 확인하고 싶을때! if( is_dir($dir) ) { // 경로가 존재할 때 }else{ // 경로가 존재하지 않을 때 } 이런 방식으로 처리하면됩니당! is_dir은 true false 로 리턴되니 참고하세용!
[linux] linux centos7 php7 설치 https://slobell.com/blogs/42 slobell blog : [CentOS7] php7 설치하기 CentOS7에서 php7(7.1)을 설치(install)하는 방법에 대해 설명한다. slobell.com 위 사이트에 아주 자세히 잘나와있는거 같아서 소장용으로 링크했습니다! 참고하세요!
[linux] linux centos 7 apm 설치 참고사이트 링크입니다! 설치에 도움들 되시길!! https://www.howtoforge.com/tutorial/centos-lamp-server-apache-mysql-php/ How to install Apache, PHP 7.3 and MySQL on CentOS 7.6 (LAMP) This tutorial shows how to install an Apache web server on a CentOS 7.6 server with PHP (mod_php with PHP 5.4, 7.0, 7.1, 7.2 or 7.3) and MySQL support. This setup is often referred to as LAMP which stands f..
[linux] CentOS 버전 확인 [root@localhost ~]# cat /etc/redhat-release 위처럼 입력하고 실행하면! CentOS Linux release 7.7.1908 (Core) 결과는 위처럼 CentOS 버전이 나오게 됩니당~ 참고하세요!
[php] php.ini timezone 타임존 설정 php가 설치되어있는 폴더를 찾아간 뒤 date.timezone = Asia/Seoul timezone을 검색해서 해당위치에 위 구문을 추가해주시면 됩니다! 참고로 추가한 후에는 아파치 재시작 해야한다는건 필수!!
[php] php 날짜 계산 date("Y-m-d", strtotime("-1 day")) // 현재시간부터 1 주일 전 date("Y-m-d", strtotime("-1 week")) // 현재시간부터 1 주일 전 date("Y-m-d", strtotime("-1 month")) // 현재시간부터 1 개월 전 date("Y-m-d", strtotime("-3 month")) // 현재시간부터 1 개월 전 date("Y-m-d", strtotime("-6 months")) // 현재시간부터 6 개월 전 date("Y-m-d", strtotime("+6 months")) // 현재시간부터 6 개월 후 date("Y-m-d", strtotime("+1 years")) // 현재시간부터 1 년 후 제가 평소에..
[javascript/jquery] JSON.parse 사용법 json을 배열형태로 변환하기 위해서는 아래처럼 JSON.parse(json) 해주면 됩니다. var json = '{"result":"OK", "number":10}'; var json_array = JSON.parse(json); 그러면 결과는 console.log(json_array.result); // OK console.log(json_array.number); // 10 이렇게 출력됩니다! 참고들하세요!