2013. 5. 14. 14:36

숫자만 리턴 함수


/**
 * 숫자만 리턴
 * @param string $hp
 */
function only_num($hp) {
    return preg_replace('/[^0-9]/','',$hp);
}