Vidyalelo
PHP · all questions

PHP Filter
practice.

Practice every MCQ with options. Use Show answers when you want the correct option and solution.

9

Questions

1/1

Page

Pick an option on a question to see the right answer and solution.

Which of the following is/are an external data?
1. Cookies
2. Input data from a form
3. Server Variables
4. Web services data

Select an option to see the answer and solution.

How many types of filtering are present in PHP?

Select an option to see the answer and solution.

Which one of the following filter is used to filter several variables with the same or different filters?

Select an option to see the answer and solution.

What will be the output of the following PHP code?
<?php
$num = "123";
if (!filter_var($num, FILTER_VALIDATE_INT))
    echo("Integer is not valid");
else
    echo("Integer is valid");
?>

Select an option to see the answer and solution.

Which one of the following does not describe a validating filter?

Select an option to see the answer and solution.

What will be the output of the following PHP code?
<?php
$var=300;
$int_options = array("options"=>array ("min_range"=>0, "max_range"=>256));
if (!filter_var(int_options))
    echo("Integer is not valid");
else
    echo("Integer is valid");
?>

Select an option to see the answer and solution.

Which one of the following filter checks if variable of specified type exists?

Select an option to see the answer and solution.

What will be the output of the following PHP code?
<?php
$value = 'car';
value, FILTER_VALIDATE_BOOLEAN, FILTER_NULL_ON_FAILURE);
?>

Select an option to see the answer and solution.

What will be the output of the following PHP code?
<?php
function convertSpace($string)
{
  return str_replace("_", " ", $string);
}
$string = "Peter_is_a_great_guy!";
echo filter_var($string, FILTER_CALLBACK, array("options"=>"convertSpace"));
?>

Select an option to see the answer and solution.