질문:
순 방문자 수를 계산하는 방문자 카운터가 필요합니다. 내 사이트 방문자. 고유하다는 것은 사람이 하루 또는 일주일에 한 번만 게시물을 볼 수 있다는 것을 의미합니다. 이에 대한 PHP 코드를 제공할 수 있습니까?
답변:
아래 PHP 코드는 사이트의 고유 방문자 수를 계산하여 각 방문자를 하루에 한 명으로 제한합니다.
<?php // Initialize variables $filePath = 'visitor_counts.txt'; $timeLimit = 86400; // One day in seconds (24 * 60 * 60) // Get the visitor's IP address $ip = $_SERVER['REMOTE_ADDR']; // Read the visitor counts file $visitorCounts = file_get_contents($filePath); // Parse the visitor counts into an array $visitorCountsArray = explode("\n", $visitorCounts); // Check if the visitor's IP address is already in the array if (in_array($ip, $visitorCountsArray)) { // Visitor has already been counted today echo "Visitor has already been counted today"; } else { // Add the visitor's IP address to the array $visitorCountsArray[] = $ip; // Update the visitor counts file file_put_contents($filePath, implode("\n", $visitorCountsArray)); // Increment the visitor count $visitorCount++; } // Echo the visitor count echo "Visitor count: $visitorCount"; ?>
설명:
위 내용은 일일 한도를 사용하여 고유한 웹사이트 방문자 수를 계산하는 PHP 스크립트를 어떻게 만들 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!