The filter_input_array() function in PHP is used to get the ______ values and optionally filter them.
- filtered
- input
- sanitized
- validated
The filter_input_array() function in PHP is used to get the input values and optionally filter them. It allows you to specify the type of input and the filter to apply. For more details, refer to: http://php.net/manual/en/function.filter-input-array.php
Loading...
Related Quiz
- What is the purpose of the array_slice() function in PHP?
- The && operator in PHP is an example of a ______ operator.
- Which of the following are true about the $_GET superglobal in PHP?
- You are writing a PHP script and you need to collect data sent in the URL's query string. How would you do this using the $_GET superglobal?
- What happens if the condition in a PHP for loop is never false?