/** * 공백삭제 * @param string $str * @return mixed */ function del_space($str) { return preg_replace('/\s+/', '', $str); }