Develop 썸네일형 리스트형 [ReactNative] Expo ios simulator said "This version of ..." When after update expo-cli.. the ios simulator said like this.."This version of the Expo app is out of date. Uninstall the app and run again to upgrade."The expo app on ios simulator is out of date..The solutions is just Remove the expo app on ios simulator and restart expo project..Open the ios simulator..and press the home button on the bottom of the simulator..And find the Expo application..a.. 더보기 전화번호 국내 지역화 코드 /** * 숫자로만 이루어진 전화번호에 dash(-)를 추가한 전화번호로 표시해줌. * 01000000000 => 010-0000-0000 */ if (!function_exists('localize_number')) { function localize_number($phone) { $returnData = ''; $numbers_only = str_replace("-", "", $phone); $returnData = preg_replace("/^1?(\d{3})(\d{4})(\d{4})$/", "$1-$2-$3", $numbers_only); if ($returnData == $numbers_only) { $returnData = preg_replace("/^1?(\d{3})(\d{3})(\d{4}).. 더보기 전화번호 체크하기(휴대전화, 유선, 대표번호 등등) if (!function_exists('phone_number_check')) { function phone_number_check($pString) { $is_rule = false; $re_phoneNum = preg_replace('/-/', '', $pString); $mobile = preg_match('/^01[016789]{1}-?([0-9]{3,4})-?[0-9]{4}$/', $pString); $tel = preg_match('/^(02|0[3-6]{1}[1-5]{1})-?([0-9]{3,4})-?[0-9]{4}$/', $pString); $rep = preg_match('/^(15|16|18)[0-9]{2}-?[0-9]{4}$/', $pString); $rep2 = preg_match(.. 더보기 이전 1 ··· 6 7 8 9 10 11 12 ··· 67 다음