| Server IP : 80.74.154.100 / Your IP : 216.73.217.0 Web Server : Apache System : Linux marissa.metanet.ch 4.18.0-553.141.2.lve.el7h.x86_64 #1 SMP Wed Jul 8 17:20:31 UTC 2026 x86_64 User : onlineadmin ( 10487) PHP Version : 8.5.7 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/httpd/vhosts/comeonline.ch/httpdocs/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;
}
}