표기법이 달라 같은 엔티티 참조가 어려울때, 한쪽의 표기법을 변경하는 방법
자바나 자바스크립트 변수명 또는 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);
}
/**
* 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>";
echo "$test2 => $result2 <br>";
?>
output:
MODIFY_DATE => modifyDate
modifyDate => MODIFY_DATE
modifyDate => MODIFY_DATE
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8130 | 9년 전 | 573 | ||
| 8129 |
|
9년 전 | 686 | |
| 8128 | 9년 전 | 543 | ||
| 8127 |
|
9년 전 | 589 | |
| 8126 | 9년 전 | 524 | ||
| 8125 | 9년 전 | 778 | ||
| 8124 |
|
9년 전 | 537 | |
| 8123 | 9년 전 | 522 | ||
| 8122 | 9년 전 | 453 | ||
| 8121 | 9년 전 | 561 | ||
| 8120 | 9년 전 | 482 | ||
| 8119 | 9년 전 | 570 | ||
| 8118 |
|
9년 전 | 646 | |
| 8117 |
|
9년 전 | 415 | |
| 8116 |
PASKRAN
|
9년 전 | 474 | |
| 8115 | 9년 전 | 469 | ||
| 8114 |
kiplayer
|
9년 전 | 607 | |
| 8113 | 9년 전 | 466 | ||
| 8112 |
|
9년 전 | 575 | |
| 8111 | 9년 전 | 414 | ||
| 8110 | 9년 전 | 456 | ||
| 8109 | 9년 전 | 387 | ||
| 8108 |
|
9년 전 | 564 | |
| 8107 |
|
9년 전 | 453 | |
| 8106 |
|
9년 전 | 455 | |
| 8105 | 9년 전 | 485 | ||
| 8104 |
|
9년 전 | 449 | |
| 8103 |
|
9년 전 | 449 | |
| 8102 |
|
9년 전 | 422 | |
| 8101 |
snshero
|
9년 전 | 807 | |
| 8100 | 9년 전 | 854 | ||
| 8099 | 9년 전 | 830 | ||
| 8098 | 9년 전 | 729 | ||
| 8097 | 9년 전 | 538 | ||
| 8096 | 9년 전 | 736 | ||
| 8095 | 9년 전 | 866 | ||
| 8094 | 9년 전 | 537 | ||
| 8093 | 9년 전 | 820 | ||
| 8092 | 9년 전 | 774 | ||
| 8091 | 9년 전 | 1157 | ||
| 8090 | 9년 전 | 783 | ||
| 8089 | 9년 전 | 996 | ||
| 8088 | 9년 전 | 660 | ||
| 8087 | 9년 전 | 787 | ||
| 8086 | 9년 전 | 535 | ||
| 8085 | 9년 전 | 500 | ||
| 8084 | 9년 전 | 618 | ||
| 8083 | 9년 전 | 591 | ||
| 8082 | 9년 전 | 779 | ||
| 8081 | 9년 전 | 488 | ||
| 8080 | 9년 전 | 586 | ||
| 8079 | 9년 전 | 545 | ||
| 8078 | 9년 전 | 464 | ||
| 8077 | 9년 전 | 554 | ||
| 8076 | 9년 전 | 423 | ||
| 8075 | 9년 전 | 457 | ||
| 8074 | 9년 전 | 419 | ||
| 8073 | 9년 전 | 475 | ||
| 8072 | 9년 전 | 468 | ||
| 8071 |
o1o111
|
9년 전 | 915 | |
| 8070 | 9년 전 | 425 | ||
| 8069 | 9년 전 | 361 | ||
| 8068 | 9년 전 | 615 | ||
| 8067 | 9년 전 | 413 | ||
| 8066 | 9년 전 | 441 | ||
| 8065 | 9년 전 | 400 | ||
| 8064 | 9년 전 | 394 | ||
| 8063 | 9년 전 | 361 | ||
| 8062 | 9년 전 | 331 | ||
| 8061 | 9년 전 | 368 | ||
| 8060 | 9년 전 | 406 | ||
| 8059 | 9년 전 | 341 | ||
| 8058 | 9년 전 | 280 | ||
| 8057 | 9년 전 | 410 | ||
| 8056 | 9년 전 | 326 | ||
| 8055 | 9년 전 | 373 | ||
| 8054 | 9년 전 | 382 | ||
| 8053 | 9년 전 | 433 | ||
| 8052 | 9년 전 | 306 | ||
| 8051 | 9년 전 | 355 | ||
| 8050 | 9년 전 | 413 | ||
| 8049 | 9년 전 | 344 | ||
| 8048 | 9년 전 | 449 | ||
| 8047 | 9년 전 | 386 | ||
| 8046 | 9년 전 | 329 | ||
| 8045 | 9년 전 | 277 | ||
| 8044 | 9년 전 | 363 | ||
| 8043 | 9년 전 | 318 | ||
| 8042 | 9년 전 | 308 | ||
| 8041 | 9년 전 | 372 | ||
| 8040 | 9년 전 | 296 | ||
| 8039 | 9년 전 | 338 | ||
| 8038 | 9년 전 | 281 | ||
| 8037 | 9년 전 | 425 | ||
| 8036 | 9년 전 | 514 | ||
| 8035 | 9년 전 | 446 | ||
| 8034 | 9년 전 | 407 | ||
| 8033 | 9년 전 | 367 | ||
| 8032 | 9년 전 | 471 | ||
| 8031 | 9년 전 | 364 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기