본문 바로가기

Number

전화번호 국내 지역화 코드 /** * 숫자로만 이루어진 전화번호에 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}).. 더보기
[HTML] Way to remove the arrow button at input tag that number type When you using the input tag with number type, you can see the up/down arrows on the right side of input tag..Like this ..If you don't like this arrows, you would add the styles in css like this ...number-input::-webkit-outer-spin-button,.number-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0;}You can find the manuals here.. https://developer.mozilla.org/en-US/docs/Web/CSS.. 더보기
[로또] 예상 번호 추첨기 몬테카를로 알고리즘이라 하며 홍보하는 로또 예상번호 추첨 사이트 광고를 보았다. 몬테카를로 알고리즘이 뭔가 찾아보았다. 별것 아니네 싶어 그냥 만들어 보았다. 나름 좀더 보완하긴 하였는데.. 100만번을 돌렸을때 나오는 녀석들의 빈도수 최대인 녀석들을 가공하여 좀 더 효율적이게 만들어 보려고 하였다. 문제는 랜덤을 돌렸을 때 각 녀석들이 출현할 확률이 거의 완벽한 정규 분포를 따르다 보니 이게 의미가 있나 하는 생각을 하게 되었다. 일단 예측 결과는 여기서 바로 할수가 없어서 iframe으로 실시간으로 당겨오도록 함. TryCount 가 낮을 수록 좀더 운이 좋은 숫자들이라고 볼수 있음. 최소 TryCount 는 1이다. 최소 200만번 이상 돌다 보니 딜레이가 조금 걸린다.평균적으로 400만번 이상 추.. 더보기