はい、PHP では filter_input() と AND/OR を組み合わせることができます。これは、POST フィールドをループすることで実行できます。 -
$value = filter_input(INPUT_POST, 'field', FILTER_DEFAULT, is_array($_POST['field']) ? FILTER_REQUIRE_ARRAY : NULL);
各ループの同じユーザーに対する同等の処理は、次のようになります。 -
$memory = array(); //looping through all posted values foreach($_POST as $key => $value) { //applying a filter for the array if(is_array($value)) { $ memory [$key] = filter_input(INPUT_POST, $key, {filters for array}); } else { $ memory [$key] = filter_input(INPUT_POST, $key, {filters for scalar}); } }
以上がPHP の filter_input() フィルター フラグを AND/OR で使用できますか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。