윈도우 예약종료 예약취소 윈도우 예약 종료 하기 윈도우 명령어로 예약 종료를 할 수 있습니다. shutdown -s -t 시간 시간은 3600이 1시간입니다. 2시간은 7200 예) shutdown -s -t 3600 shutdown -s -t 7200 이렇게 넣으면 지정 시간이 되면 자동으로 윈도우가 종료합니다. 네모박스에 종료 명령어를 입력 그럼 윈도우 우측 하단에 위와 같이 나옵니다. 예약을 취소 하려면 shutdown -a 아래와 같이 나옵니다. TIP 2016.02.14
php header charset uft-8 header("Content-Type: text/html; charset=UTF-8"); php에 header를 사용하여 문서타입을 변경하는 방법입니다. IT/php 2016.02.14
Fatal error: Allowed memory size of memory_limit Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 157 bytes) 서버에 있는 파일을 읽어서 처리하거나 특정 로직을 실행하면서 메모리를 초과 했기 때문에 발생합니다. ini_set('memory_limit', '200M'); 이런식으로 처리 할 수 있습니다. IT/php 2016.02.14
자바스크립트 시작페이지 즐겨찾기 1.자바스크립트 시작페이지 익스플로러에서만 작동합니다. 시작 페이지 2.자바스크립트로 즐겨찾기추가 만들기 if(window.opera) {if ($("a.jqbookmark").attr("rel") != ""){ // don't overwrite the rel attrib if already set$("a.jqbookmark").attr("rel","sidebar");}} $("a.jqbookmark").click(function(event){event.preventDefault(); // prevent the anchor tag from sending the user off to the linkvar url = this.href;var title = this.title; if (window.sideba.. IT/제이쿼리 2016.02.14