How many items are available in the $_FILES array?
What is the output of the given code?
<?php
if(""==0)
echo 1;
else
echo 0;
?>
Which function is used to change the file permissions for files?
Which PHP function can be used to connect to a MySQL database?
Which one of the following function is used to retrieve the MX records for the domain specified by hostname?
Which function is used to split a string into a series of substrings, with each substring boundary determined by a specific separator?
What will be the output of the following PHP code?
<?php
echo str_pad("Salad", 5)." is good."
?>
Which of the following is the correct way to declare a method?
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");
?>
Which one of the following is true about the following line – $obj = new ImageHandler(‘/images/’, array(400, 300));?