메뉴 건너뛰기

프로그램언어

2015.04.14 19:06

문자열 나누기

조회 수 19681 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

[PHP] 문자열 나누기


특정 문자열로 문자열 나누기    

split(), explode() 함수


array explode(string seprarator, string string) ;
array split(string pattern, string string, int [limit]) ;
두 함수 모두 결과가 배열로 반환된다



$date = "2010/09/13" ;

list($year, $month, $day) = explode("/",$date) ;

// "/" 를 기준으로 $date 값을 $year, $month, $day 로 나누어 배열로 반환한다



$datetime = "2010/09/13 23:45:46" ;

list($year, $month, $day, $hour, $minute, $second) = split("[/ :]", $datetime) ;

// split("[/ :]", $datetime) 함수에서 [/ :] 를 구분자로 나누어 배열 list 에 값을 대입한다.
echo "$year 년 $month 월 $day 일 $hour 시 $minute 분 $second 초" ;


  1. No Image 23Dec
    by
    2016/12/23 Views 19774 

    parse_ini_file — Parse a configuration file

  2. No Image 27Feb
    by
    2014/02/27 Views 19729 

    MYSQL 업데이트 두 번 하기

  3. No Image 14Apr
    by 조쉬
    2015/04/14 Views 19681 

    문자열 나누기

  4. No Image 26Mar
    by
    2014/03/26 Views 19667 

    이미지 워터마크 구현

  5. No Image 23Dec
    by
    2016/12/23 Views 19658 

    대소문자 바꾸기 (strtoupper, strtolower)

  6. No Image 23Dec
    by
    2016/12/23 Views 19636 

    glob 현재 디렉토리에서 pattern에 일치하는 경로 이름을 배열로 반환

  7. No Image 26Mar
    by
    2014/03/26 Views 19535 

    Drag/Drop HTML elements

  8. No Image 27Feb
    by
    2014/02/27 Views 19535 

    엔터의 표현

  9. No Image 26Mar
    by
    2014/03/26 Views 19522 

    jQuery 개발자를 위한 메모 - 레퍼런스

  10. No Image 23Dec
    by
    2016/12/23 Views 19520 

    ini_get - php.ini에 지정되어 있는 지시어의 값을 읽어온다

  11. No Image 13Apr
    by
    2017/04/13 Views 19505 

    PHP, $_SERVER 변수

  12. No Image 26Mar
    by
    2014/03/26 Views 19490 

    PHP 세션에서 시작, 변수등록, 변수삭제, 부수기

  13. No Image 26Mar
    by
    2014/03/26 Views 19434 

    네이버 지도 api php버전

  14. No Image 23Dec
    by
    2016/12/23 Views 19409 

    headers_sent 헤더 전송 여부를 확인

  15. No Image 27Feb
    by
    2014/02/27 Views 19386 

    리스트 페이징

  16. No Image 06Mar
    by
    2017/03/06 Views 19370 

    다중 도메인에 따른 접속방법

  17. No Image 14Apr
    by
    2015/04/14 Views 19353 

    문자열 붙이기

  18. No Image 19Feb
    by
    2017/02/19 Views 19352 

    파일업로드

  19. No Image 26Mar
    by
    2014/03/26 Views 19257 

    jQuery 개발자를 위한 메모 - 플러그 인

  20. No Image 07Mar
    by
    2017/03/07 Views 19102 

    세션 시작 / 세션 데이터 추가 / 세션 데이터 삭제 / 세션 종료하기

Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 17 Next
/ 17

하단 정보를 입력할 수 있습니다

© k2s0o1d4e0s2i1g5n. All Rights Reserved