일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- vim color scheme
- python 3.X 소스 설치
- httpd.conf
- CentOS 6
- unique_id
- node.js
- httpd-default.conf
- mod_unique_id
- httpd-mpm.conf
- httpd-vhosts.conf
- jQuery
- httpd-info.conf
- httpd-autoindex.conf
- apache 연동
- MySQL 5.1.41
- Node.js 소스 설치
- httpd-dav.conf
- Mod_Security 룰 셋
- Node.js apache 연동
- PHP 5.2.17 .ini
- Repository
- CentOS 6.10
- epel repository
- vimrc 옵션
- httpd 2.2.32
- PHP 5.2 .ini
- CentOS
- gcc update
- MySQL
- python 3.5.10
- Today
- Total
목록분류 전체보기 (84)
곰시기's
#listViewBox.foldList{ height: calc( 100% - 82px ); min-height:unset; animation-name: foldList; -moz-animation-name: foldList; -webkit-animation-name: foldList; animation-duration: 2s; -moz-animation-duration: 2s; -webkit-animation-duration: 2s; animation-timing-function: ease; -moz-animation-timing-function: ease; -webkit-animation-timing-function: ease; animation-fill-mode: forwards; -moz-an..
function fncCreateSelectBox( $name = "", $selectedOpt = "", $data ) { $optCnt = count( $title ); $dataType = strtoupper( gettype( $data ) ); $rtn = ""; switch( $dataType ) { case "INTEGER" : case "DOUBLE" : $data = ( int )$data; for( $i = 0; $i < $data; $i++ ) { $selected = ""; if( $i == $selectedOpt ) { $selected = "selected='selected'"; } $rtn .= "{$i}"; } break; case "ARRAY" : foreach( $data ..
function fncJsonEnc( $data ) { /* * $data : 사용자로 부터 받아오는 변수 * $get_type : $data type 확인 * $key, $k : 배열의 key * $val, $v : 배열의 value * $rtn : 반환 값 * $flag : 성공 실패 여부 */ $get_type = ""; $key = ""; $val = ""; $flag = false; $rtn = ""; $get_type = strtoupper( gettype( $data ) ); switch( $get_type ) { case "BOOLEAN" : return $data ? "true" : "false"; break; case "INTEGER" : case "DOUBLE" : return $da..
function fncIconv( $obj, $target = "all", $endEnc = "EUC-KR" ) { /* * $obj : 사용자로 부터 받아오는 변수 * $target : $obj가 배열일 경우 문자 셋 변경 대상 all / key / val * $endEnc : 변경할 문자 셋 * $type_obj : $obj의 type 확인 * $key : 배열의 key * $val : 배열의 value * $type_arr : $val의 type 확인용 * $encType : 변경 대상의 문자 셋 * $rtn : 반환 값 */ $type_obj = strtoupper( gettype( $obj ) ); if( $type_obj == "ARRAY" || $type_obj == "OBJECT" ) { ..