Transition me! Introducing CSS Transformations box 1 box 2 box 3 box 4 box 5 box 6 #stage #block #box1 #box2 #stage2 #box3 #box4 #stage3 Transition me! Introducing CSS Transformations box 1 box 2 box 3 box 4 box 5 box 6 #stage #block #box1 #box2 #stage2 #box3 #box4 #stage3 ease, linear, ease-in, ease-out, ease-in-out, cubic-bezier -webkit-transition-property: background; -webkit-transition-durat..
2012-11-23T06:41:46+0000 위와 같은 파이어폭스에서는 날짜가 Parsing 이 제대로 되었지만. ie 에서 안대때 유용히 해결하는 javascript Date 파싱 로직 사파리에서 날짜 파싱도 문제가 검색 되었다. if ( $.browser.msie ) { sDate = new Date((Date.parse(sTime.replace(/\-/ig, '/').split('.')[0]))); } else if ( $.browser.safari) { var aDate = sTime.split(/[^0-9]/); sDate=new Date (aDate[0],aDate[1]-1,aDate[2],aDate[3],aDate[4],aDate[5] ); } else { sDate = new Date( s..
일요일 ~ 월요일 한주간 날짜 얻어오기 $today = strtotime('today'); $onDay = 86400; // 하루 $current_week = strtotime('this week') - $onDay; //일요일 부터 시작 하려고 하루를 뺌 $current_week_end = $current_week + ( $onDay * 6 ); $next_week = strtotime('next week') - $onDay; $next_week_end = $next_week + ( $onDay * 6 ); echo date('m.d', $today ); echo date( 'm.d', $current_week); echo date( 'm.d', $current_week_end ); echo date(..
1 . install memcached - 다운로드 : Win32 Memcached library http://code.jellycan.com/memcached/ , 윈도우 파일 직접 받기 : http://code.jellycan.com/files/memcached-1.2.6-win32-bin.zip - . c:\memcached 폴더에 압축 해제 3. memcached service start memcached -d install memcached -d start 실행 확인 : wmic process get description, executablepath | findstr memcached.exe 실행중이면 경로 출력함 4. php 모듈 다운 로드 http://shikii.net/blog/downlo..