print_r
This commit is contained in:
parent
6ba71f78d1
commit
b4925e7659
|
|
@ -43,8 +43,8 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
||||||
|
|
||||||
foreach ($data as $port => $value) {
|
foreach ($data as $port => $value) {
|
||||||
$tmp = explode(",", trim($value));
|
$tmp = explode(",", trim($value));
|
||||||
if (count($tmp) > 0) {
|
if (count($tmp) >= 1) {
|
||||||
error_log(count($tmp));
|
print_r(count($tmp));
|
||||||
print_r($tmp);
|
print_r($tmp);
|
||||||
foreach ($tmp as $ip) {
|
foreach ($tmp as $ip) {
|
||||||
error_log("limit port " . $port);
|
error_log("limit port " . $port);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue