I want clear $_POST array content fully, all examples what I see in internet, looks like this:
if (count($_POST) > 0) { foreach ($_POST as $k=>$v)
unset($_POST); $_POST = array();
Or in a single statement:
unset($_POST) ? $_POST = array() : $_POST = array();
But what is the reason you want to do this?