donaricano-btn

간편한 날짜 선택 팝업 구현


1. 정의

datepicker()를 이용하여 간단하게 날짜 팝업을 구현한다


2. 구문

- $(텍스트상자).datepicker({매개변수 : 값,...})

1) 날짜 형식 국제화 대응

- <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/i18n/jquery-ui-i18n.min.js"></script>

- 위의 url을 추가 함으로서 날짜 형식을 맞출 수가 있다

2) 언어 선택

- $.datepicker.setDefault 메소드를 이용하여 언어를 선택한다

- ko(한국어), fr(프랑스), de(독일)


3. 구현



블로그 이미지

리딩리드

,
donaricano-btn

Screen English


Sully : I eyeballed it

Charles : You eyeballed it?

Sully : Yes

The best chance those passengers had was on that river,

and I'd bet my life on it

In fact, I did, and I would do it again


Sully : 눈대중으로 쟀습니다

Charles : 눈대중으로 쟀다고?

Sully : 그렇습니다

승객들을 위한 최선의 선택은 바로 그 강이었어요

목숨을 걸고 장담할 수 있습니다

실제로 목숨을 걸었고

다시해도 같은 선택을 할 겁니다


내 목숨을 걸고 장담할 수 있어

- I'm absolutely confident of that

- I'm 100% sure that I'm right


Kiss English

Dialogue 1

A: How goes your love life?

( 너의 연애는 어떻게 되어 가?)

B: It may surprise you but Jamie and I broke up

(네가 놀랄지도 모르지만, 제이미랑 나는 헤어졌어)



Dialogue 2

A: What's your favorite kind of kimchee?

(네가 가장 좋아하는 종류의 김치는 뭐야?)

B: It may surprise you but I've never eaten kimchee

(네가 놀랄지도 모르지만, 나는 김치를 먹어본 적이 전혀 없어)


Dialogue 3

A: I'm going to Amsterdem

(나, 암스테르담 간다)

B: It may surprise you, but I've been there before

(네가 놀라지도 모르지만, 나는 거기에 가 본 적이 있어)



블로그 이미지

리딩리드

,
donaricano-btn

Screen English


Ben : Why didn't you attempt to return to LaGuardia?

Sully : There simply was not enough altitude

The Hudson was the only place

that was long enough and smooth enough

and wide enough to even attempt to land the airplane safely


Ben : 왜 라과디아 공항으로 회항하지 않았나요?

Sully : 고도가 충분하지 않았어요

비행기가 안전하게 착륙을 시도할 수 있을 만큼

길고, 매끄럽고, 넓은 장소는 허드슨 강 밖에 없었어요


허드슨 강이 유일한 장소였어

- There was no other place than the Hudson

- My only option was the Hudson


Kiss English

Dialogue 1

A: How old were you when you first travelled abroad?

( 처음 너가 여행을 떠난게 몇살 때였어?)

B: I was in my early 20s

(20대 초반이었지)



Dialogue 2

A: How old was your dog when you first brought it home?

(처음으로 집으로 데려왔을 때 개가 몇 살 이 었어?)

B: It was a newborn

(갓 태어난 개였어)


Dialogue 3

A: How old was Mary when she first began working?

(메어리가 처음으로 일을 시작했을 때 몇 살이었어?)

B: She was nearly 25

(거의 25세였지)



'English > GMP.2017' 카테고리의 다른 글

[GMP] How much sleep did get the night before?  (0) 2017.02.03
[GMP] I'd bet my life on it  (0) 2017.02.02
[GMP] I have so many questions for you  (0) 2017.01.31
[GMP] What took you so long?  (0) 2017.01.26
[GMP] ICEAGE - I'm getting nauseous  (0) 2017.01.24
블로그 이미지

리딩리드

,
donaricano-btn

Window 에서 PHP 설치 및 php.ini 설정 - WAMP(Bitnami)


1. 정의

- PHP는 단독 설치가 아닌 Apache, Mysql, PHP 가 동시에 필요하다

- Bitnami 를 통해 한번에 설치 할 수 있다

https://bitnami.com/stack/wamp


2. php.ini

- 경로 : C:\Bitnami\wampstack-7.1.1-0\php

1) 개발 환경 설정

- php.ini 파일을 지운다

php.ini-development라는 파일을 복사 하고 복사한 파일을 php.ini로 변경

- php.ini으로 이동

- display_errors = Off를 On으로 변경하여 에러 사항이 보이도록 한다

- log_errors = On

- opcache.enable=0 코드를 수정하면 바로 반영되도록 설정

2) 실 서버

- php.ini 파일을 지운다

php.ini-production라는 파일을 복사 하고 복사한 파일을 php.ini로 변경

3) 이후에 apache 재실행




'Back-End > PHP' 카테고리의 다른 글

[PHP] PHP 배열의 array(), explode() 함수  (0) 2017.02.09
[PHP] PHP 기본 상수와 define()함수  (0) 2017.02.09
블로그 이미지

리딩리드

,