mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@838 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
d4880e4b96
commit
3aeb57a11c
7 changed files with 44 additions and 74 deletions
|
|
@ -73,6 +73,15 @@
|
|||
return $oDB->executeQuery($query_id, $args);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief DB::getNextSequence() 의 alias
|
||||
* @return big int
|
||||
**/
|
||||
function getNextSequence() {
|
||||
$oDB = &DB::getInstance();
|
||||
return $oDB->getNextSequence();
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Context::getUrl($args_list)를 쓰기 쉽게 함수로 선언
|
||||
* @return string
|
||||
|
|
@ -210,4 +219,11 @@
|
|||
if($no >= $mod) $output .= getNumberingPath((int)$no/$mod, $size);
|
||||
return $output;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 한글이 들어간 url의 decode
|
||||
**/
|
||||
function url_decode($str) {
|
||||
return ereg_replace('%u([[:alnum:]]{4})', '&#x\1;',$str);
|
||||
}
|
||||
?>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue