PHPスクリプト/ポストされた全てのキーと値を取得する

ポストされた全てのキーと値を取得する

foreach($_POST as $key => $value){
  print $key." : ".$value;
}