반응형

Program/Php 16

입력 받은 날짜에 대한 남은 날짜 시 분 출력하기 php

/* * 현재로부터 입력받은 날짜에 대한 남은 일 시 분 조회 * */public static function func_get_left_time ($str_date) {if (strlen($str_date)!=14) return '';$date = new DateTime($str_date);$currentdate = new DateTime();$res = $date->diff($currentdate)->format(" %d일 %h시간 %i분 전");$res= str_replace(" 0일","",$res);$res= str_replace(" 0시간","",$res);$res= str_replace(" 0분","",$res);return $res;}

Program/Php 2018.04.07

(400) Unknown metric(s): ga:timeOnSite 워드프레스 google analytics 오류시

The ga:timeOnSite metric was depricated back in April.Metric – ga:timeOnSite – Use ga:sessionDuration instead. GA Core Change LogIn order to fix the chart on the dashboard you’ll need to edit the plug-in.It’s line 454 in google-analytics-summary-widget.php, just replace ga:timeOnSite with ga:sessionDuration and it will work again. 즉 ga:timeOnSite 대신 ga:sessionDuration 으로 교체하면 됩니다.수정할 위치는 google-..

Program/Php 2017.11.30

윈도우 환경에 php7 apache2.4 설치

httpd -k stop 서비스종료 httpd.exe -k restart 서비스 재시작 httpd.exe -k uninstall or httpd.exe -k unistall -n AMP_Apache2 제거 httpd -k start 서비스시작 httpd -k install 설치 아파치설치 https://www.apachelounge.com/download/ 최신버전 32/64 맞게 다운 Visual C++ Redistributable for Visual Studio 2015 설치를 선행 요구함 없을 경우 https://www.microsoft.com/ko-kr/download/details.aspx?id=53840 32/64구분하여 설치 아파치 압축하여 Apache폴더만 원하는 곳에 풀어준다. C:\Ap..

Program/Php 2017.01.31
반응형