| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/prosvasi/wp-content/plugins/wp-statistics/src/Utils/ |
Upload File : |
<?php
namespace WP_Statistics\Utils;
use WP_Statistics\Utils\Url;
class Env
{
/**
* Check if the current environment is local development
*
* @return bool True if running locally, false otherwise
*/
public static function isLocal()
{
// Check common local development domains
$localDomains = array(
'localhost',
'127.0.0.1',
'::1',
'local.dev',
'local.wp',
'*.loc',
'*.test',
'*.local',
);
// Get current site URL and parse the host
$siteUrl = Url::getDomain(home_url());
// Check against local domains
foreach ($localDomains as $domain) {
// Handle wildcard domains
if (strpos($domain, '*') !== false) {
$pattern = '/^' . str_replace('\*', '.*', preg_quote($domain, '/')) . '$/';
if (preg_match($pattern, $siteUrl)) {
return true;
}
} // Exact match
elseif (strtolower($siteUrl) === strtolower($domain)) {
return true;
}
}
// Additional checks for common local environment indicators
if (defined('WP_ENVIRONMENT_TYPE') && WP_ENVIRONMENT_TYPE === 'local') {
return true;
}
if (isset($_SERVER['REMOTE_ADDR']) && in_array($_SERVER['REMOTE_ADDR'], ['127.0.0.1', '::1'])) {
return true;
}
// Check for common local server software
if (isset($_SERVER['SERVER_SOFTWARE']) && stripos($_SERVER['SERVER_SOFTWARE'], 'localhost') !== false) {
return true;
}
return false;
}
}