본문 바로가기

반응형

Web

엑셀파일 생성시 숫자형으로 강제 변환되는 것 방지 웹 페이지를 엑셀로 변환할 때 002211 같은 값들은 엑셀에서 강제로 2211로 숫자로 변환된다. 이것을 막으려면 웹페이지의 안에 위 소스를 넣으면 된다~ 또는, 출처 : http://changman.mireene.com/bbs/board.php?bo_table=menu502&wr_id=169 더보기
asp CDO를 이용해서 메일 발송시 한글이 깨지는 경우 .BodyPart.Charset = "사용중인 언어셋" euc-kr,utf-8 등 해당 페이지에서 사용중인 언어셋을 적어주면 해결이 된다 위치는 최상단에 붙여야한다 ex) Set objMessage = Server.CreateObject("CDO.Message") Set objMessage.Configuration = objConfig With objMessage .BodyPart.Charset = "사용중인 언어셋" .To = "메일주소" .From = "메일주소" .Subject = "제목" .HTMLBody = "내용" .Send End With 더보기
array 관련함수 array_search : http://php.net/manual/en/function.array-search.php array_keys : http://php.net/manual/en/function.array-keys.php array_key_exists : http://php.net/manual/en/function.array-key-exists.php in_array : http://www.php.net/manual/en/function.in-array.php 더보기
PHP 에서 한글/영어 길이 맞춰서 자르기 function utf8_strcut( $str, $size ) { $substr = substr( $str, 0, $size * 2 ); $multi_size = preg_match_all( '/[\\x80-\\xff]/', $substr, $multi_chars ); if ( $multi_size > 0 ) $size = $size + intval( $multi_size / 3 ) - 1; if ( strlen( $str ) > $size ) { $str = substr( $str, 0, $size ); $str = preg_replace( '/(([\\x80-\\xff]{3})*?)([\\x80-\\xff]{0,2})$/', '$1', $str ); $str .= '...'; } return $st.. 더보기
encodeURI, encodeURIComponent, escape 함수 차이점 encodeURI() / decodeURI() 최소한의 문자만 인코딩합니다. ; / ? : @ & = + $ , - _ . ! ~ * ' ( ) # 이런 문자는 인코딩하지 않습니다. http:// ... 등은 그대로 나옵니다. encodeURIComponent() / decodeURIComponent() 알파벳과 숫자 Alphanumeric Characters 외의, 대부분의 문자를 모두 인코딩합니다. http:// ... 가 http%3A%2F%2F 로 됩니다. escape() / unescape() 예전부터 있던 오래된 함수입니다. encodeURI() 와 encodeURIComponent() 의 중간 정도의 범위로 문자를 인코딩합니다. encodeURI, encodeURIComponent, esca.. 더보기
소셜보내기 function openNewsWin(openUrl) { var winObj; winObj = window.open(openUrl,"sendNewsWin","width=1024, height=800"); } function openNewsWin2(openUrl) { var winObj; winObj = window.open(openUrl,"sendNewsWin","width=700, height=600, scrollbars=yes, resizable=yes, menubar=yes, toolbar=yes, statusbar=yes"); } function openNewsWin3(openUrl) { var winObj; winObj = window.open(openUrl,"sendNewsWin","width.. 더보기
slideup 익스플로러 에러 해결방법 this.custom(this.cur(), 0); 이부분을 찾을 후 0을 1로 바꿔주면 된다. 더보기
이미지 리사이즈 function img_resize() { maxsize = 350; //최대 가로폭 $("img").each(function() { // 모든 이미지 태그에 적용 var imgwidth = $(this).width(); // 해당 img의 속성 중 폭(width)의 값 if (imgwidth > maxsize) { // 폭이 maxsize 초과할 때에만 줄임 var imgheight = $(this).height(); // 해당 img의 속성 중 높이(height)의 값 var ratio = imgwidth/imgheight; // 비율 var newHeight = Math.round(maxsize/ratio); // 새 높이는 maxsize으로 원래 비율에 맞춤 $(this).css({width:ma.. 더보기
윈도우2003 ftp 설치 및 설정하기 더보기
vsftpd 설정 및 운영 출처 : http://lanplaza.net vsftpd 설치하기 cd /usr/local/src/ftpd/ : 디렉토리 이동 lftpget ftp://vsftpd.beasts.org/users/cevans/vsftpd-2.0.5.tar.gz : 공식 사이트로부터 다운로드 useradd nobody : nobody 사용자 추가(nobody 사용자가 있는지 확인, 사용자가 있으면 다음 단계로 진행) mkdir /usr/share/empty/ : 빈 디렉토리 생성(만들어져 있으면 다음 단계로 진행) mkdir /var/missflash/ : missflash 계정의 홈 디렉토리 생성 useradd -d /var/missflash missflash : missflash 계정의 홈 디렉토리 설정 chown ro.. 더보기

반응형