简体   繁体   中英

echo partially hidden (IPV4 or IPV6) ip in a table

I have a table where a variable in a row containing IP information is being echoed. I think there's an issue with my if statement, because if I use the following then I can get the variable to echo:

echo $row['log_ip'] =  substr_replace ($row['log_ip'], $ipv4replacement, stripos     ($row['log_ip'], $ipv4needle, $offset = 2)); 

My current code:

$ipv6needle = ':';
$ipv4needle = '.';
$ipv4replacement = '.***.***.***';
$ipv6replacement = ':****:****:****:****:****:****:****';
if (strpos($row['log_ip'], ':') !== FALSE) {
echo $row['log_ip'] =  substr_replace ($row['log_ip'], $ipv4replacement, stripos     ($row['log_ip'], $ipv4needle, $offset = 2));
else 
echo $row['log_ip'] =  substr_replace ($row['log_ip'], $ipv6replacement, stripos     ($row['log_ip'], $ipv6needle, $offset = 2)); }

Your code is full of weird assignments, I don't know what you want to achieve with them, but here's a corrected and refactored code.

<?php

$offset = 2;

if (strpos($row["log_ip"], ":") !== false) {
  $needle      = ".";
  $replacement = ".***.***.***";
}
else {
  $needle      = ":";
  $replacement = ":****:****:****:****:****:****:****";
}

$row["log_ip"] = substr_replace($row["log_ip"], $replacement, stripos($row["log_ip"], $needle, $offset));

echo $row["log_ip"];

Answer to the question in the comment:

<?php

function mask_ip_address($ip_address) {
  if (strpos($ip_address, ".") !== false) {
    $parts = explode(".", $ip_address);
    return $parts[0] . str_repeat(".***", 3);
  }
  $parts = explode(":", $ip_address);
  return $parts[0] . str_repeat(":****", 7);
}

function mask_ip_address_test($ip_address, $expected) {
  assert($expected === mask_ip_address($ip_address));
}

mask_ip_address_test("17.0.0.1", "17.***.***.***");
mask_ip_address_test("fe80::200:5aee:feaa:20a2", "fe80:****:****:****:****:****:****:****");

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM