Which of the following functions do not return a timestamp?
1. time()
2. date()
3. strtotime()
4. localtime()
5. gmmktime()
1. time()
2. date()
3. strtotime()
4. localtime()
5. gmmktime()
Select an option to see the answer and solution.
Practice every MCQ with options. Use Show answers when you want the correct option and solution.
30
Questions
2/2
Page
Pick an option on a question to see the right answer and solution.
Select an option to see the answer and solution.
Select an option to see the answer and solution.
Select an option to see the answer and solution.
<?php
$time = strtotime ('2004/01/01');
echo date ('H:i:s', $time);
?>
Select an option to see the answer and solution.
Select an option to see the answer and solution.
Select an option to see the answer and solution.
Select an option to see the answer and solution.
<?php
echo gmmktime(0, 0, 0, 1, 1, 1970);
?>
Select an option to see the answer and solution.
Select an option to see the answer and solution.
Select an option to see the answer and solution.