예, 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!