code has only one line, as follows, IP is written by me blindly, and there is no
in order to see it take effect.var_dump(exec(sprintf("/usr/sbin/iptables -I INPUT -s %s -j DROP", "43.1.1.1")));
1 browser access, no effect
write, feedback in the browser is empty, originally empty, iptables
itself does not return any data, and then check did not take effect
iptables -L
2 manual input is no problem
it"s OK to enter shell manually
iptables -I INPUT -s 43.1.1.1 -j DROP
3 php does not disable the function
execution in php-cli is OK, or using php to execute files is also OK, but only operations are not performed in the browser, is it because of permission issues? Could you tell me how to solve it?