git-svn-id: http://xe-core.googlecode.com/svn/trunk@838 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-03-30 13:47:32 +00:00
parent d4880e4b96
commit 3aeb57a11c
7 changed files with 44 additions and 74 deletions

View file

@ -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);
}
?>