사용자정보

PHP에서 사용자 위치 구하는 방법

PHP에서 사용자 위치 구하는 방법 geocode: $geocode_stats = file_get_contents("http://maps.googleapis.com/maps/api/geocode/json?address=$country_name&sensor=false"); $output_deals = json_decode($geocode_stats); $latLng = $output_deals->results[0]->geometry->location; echo $lat = $latLng->lat; echo $lng = $latLng->lng; ipinfo: function ip_details($IPaddress) { $json = file_get_contents("http://ipinfo.io/{$IPaddress}"); …

PHP에서 사용자 위치 구하는 방법 Read More »

윈도우에서 git 사용자 정보 삭제하는 방법

윈도우에서 git 사용자 정보 삭제하는 방법 윈도우에서 git 사용자 정보를 삭제하고 싶을때는 자격 증명 관리자에서 삭제하면 됩니다. Post Tags: #credentials, #Git, #Win, #Window, #깃, #사용자, #사용자정보, #윈도우, #자격증명관리자

깃에서 커밋된 사용자정보 변경하기

깃에서 커밋된 사용자정보 변경하기 git filter-branch –force –env-filter "GIT_AUTHOR_NAME='NEW_NAME'; GIT_AUTHOR_EMAIL='NEW_EMAIL';" — –all; git filter-branch –force –env-filter "GIT_COMMITTER_NAME='NEW_NAME'; GIT_COMMITTER_EMAIL='NEW_EMAIL';" — –all; change committer $ git filter-branch –force –env-filter ' if [ …

깃에서 커밋된 사용자정보 변경하기 Read More »

Scroll to Top