| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- httpd-vhosts.conf
- MySQL
- PHP 5.2 .ini
- epel repository
- PHP 5.2.17 .ini
- MySQL 5.1.41
- Repository
- httpd-default.conf
- httpd-info.conf
- httpd-autoindex.conf
- CentOS 6.10
- jQuery
- vimrc 옵션
- CentOS
- CentOS 6
- Node.js apache 연동
- python 3.5.10
- mod_unique_id
- Mod_Security 룰 셋
- httpd 2.2.32
- vim color scheme
- node.js
- Node.js 소스 설치
- python 3.X 소스 설치
- unique_id
- httpd-dav.conf
- gcc update
- httpd-mpm.conf
- apache 연동
- httpd.conf
- Today
- Total
목록Web Development/PHP (8)
곰시기's
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" ) { ..
$saveFile = "/test/img/{파일명}"; // htdocs를 root로 가정 $fileSize = filesize( $saveFile ); if( file_exists( $saveFile ) && $fileSize != 0 ) { continue; } else if( !file_exists( $saveFile ) && $fileSize == 0 ) { $ch = curl_init(); curl_setopt( $ch, CURLOPT_URL, $url ); // $url 파일을 받을 원격지 주소 curl_setopt( $ch, CURLOPT_NOBODY, true ); curl_exec( $ch ); $httpCode = curl_getinfo( $ch, CURLINFO_HTTP_CODE );..
function contentEnd( $content, $string, $len_include = false ) { if( "5.3"