from_camel_case, to_camel_case

· 14년 전 · 1292
표기법이 달라 같은 엔티티 참조가 어려울때, 한쪽의 표기법을 변경하는 방법
자바나 자바스크립트 변수명 또는 XML의 node, attribute name이 camel 을 쓰고,
DB Column이 underscore(_) 를 쓰죠.
( db 컬럼과 xml 의 node명을 상호 참조할경우 아래와 같이 변환해서 쓰면 좋습니다.
xml을 파싱해서 db에 넣는다던지, db를 조회해서 xml을 만든다던지..
)
 
 
<?php
  /**
   * Translates a camel case string into a string with underscores (e.g. firstName -> first_name)
   * @param    string   $str    String in camel case format
   * @return    string            $str Translated into underscore format
   */
  function from_camel_case($str) {
    $str[0] = strtolower($str[0]);
    $func = create_function('$c', 'return "_" . strtolower($c[1]);');
    return preg_replace_callback('/([A-Z])/', $func, $str);
  }
 
  /**
   * Translates a string with underscores into camel case (e.g. first_name -> firstName)
   * @param    string   $str                     String in underscore format
   * @param    bool     $capitalise_first_char   If true, capitalise the first char in $str
   * @return   string                              $str translated into camel caps
   */
  function to_camel_case($str, $capitalise_first_char = false) {
    if($capitalise_first_char) {
      $str[0] = strtoupper($str[0]);
    }
    $func = create_function('$c', 'return strtoupper($c[1]);');
    return preg_replace_callback('/_([a-z])/', $func, $str);
  }

$test1 =   "MODIFY_DATE";
$test2 =   "modifyDate";
$result1 = to_camel_case(strtolower($test1));
$result2 = strtoupper(from_camel_case($test2));
echo "$test1 => $result1 <br>";
echo "$test2 => $result2 <br>";
?>
output:
MODIFY_DATE => modifyDate
modifyDate => MODIFY_DATE
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
14년 전 조회 1,996
14년 전 조회 5,066
14년 전 조회 1,975
14년 전 조회 1,734
14년 전 조회 1,248
14년 전 조회 1,475
14년 전 조회 1,266
14년 전 조회 1,160
14년 전 조회 1,222
14년 전 조회 1,240
14년 전 조회 1,190
14년 전 조회 2,036
14년 전 조회 1,370
14년 전 조회 1,220
14년 전 조회 1,157
14년 전 조회 1,224
14년 전 조회 1,546
14년 전 조회 1,444
14년 전 조회 2,088
14년 전 조회 1,662
14년 전 조회 4,117
14년 전 조회 1,334
14년 전 조회 1,931
14년 전 조회 1,631
14년 전 조회 3,423
14년 전 조회 3,032
14년 전 조회 1,190
14년 전 조회 2,195
14년 전 조회 1,223
14년 전 조회 2,975
14년 전 조회 2,586
14년 전 조회 1,130
14년 전 조회 6,301
14년 전 조회 1,515
14년 전 조회 2,088
14년 전 조회 1,848
14년 전 조회 1,748
14년 전 조회 1,737
14년 전 조회 1,753
14년 전 조회 1,550
14년 전 조회 1,939
14년 전 조회 2,336
14년 전 조회 1,372
14년 전 조회 1,752
14년 전 조회 2,735
14년 전 조회 2,595
14년 전 조회 1,557
14년 전 조회 2,052
14년 전 조회 4,561
14년 전 조회 1,293
14년 전 조회 3,250
14년 전 조회 2,059
14년 전 조회 2,486
14년 전 조회 1,685
14년 전 조회 1,459
14년 전 조회 1,453
14년 전 조회 1,574
14년 전 조회 1,669
14년 전 조회 2,563
14년 전 조회 3,793
14년 전 조회 2,872
14년 전 조회 1,572
14년 전 조회 2,170
14년 전 조회 2,449
14년 전 조회 1,217
14년 전 조회 2,484
14년 전 조회 3,701
14년 전 조회 2,387
14년 전 조회 3,300
14년 전 조회 4,548
14년 전 조회 4,652
14년 전 조회 3,056
14년 전 조회 1,525
14년 전 조회 1,781
14년 전 조회 4,616
14년 전 조회 2,927
14년 전 조회 2,088
14년 전 조회 4,473
14년 전 조회 3,114
14년 전 조회 1,193
14년 전 조회 3,101
14년 전 조회 1,240
14년 전 조회 1,475
14년 전 조회 2,364
14년 전 조회 1,969
14년 전 조회 2,222
14년 전 조회 1,752
14년 전 조회 2,779
14년 전 조회 1,421
14년 전 조회 1,432
14년 전 조회 1,280
14년 전 조회 2,094
14년 전 조회 1,703
14년 전 조회 1,417
14년 전 조회 6,002
14년 전 조회 2,556
14년 전 조회 1,838
14년 전 조회 1,294
14년 전 조회 1만
14년 전 조회 2,211