Question from the PHP5 test
What is the output of the following code? `echo time();`
Easy
If you ask PHP to return the current time using the time() function, what will you get?
Author: Mathieu RobinStatus: PublishedQuestion passed 69 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!
Similar QuestionsMore questions about PHP
1
Validate a URL with a 'name' parameter whose value is 'John Doe'.1
What is the difference between an interface and a class in PHP?0
What is the output of the following code?
$a = 'hello';
$b = &$a;
$b = 'world';
echo $a;0
PHP type juggling0
What is the output of the following code?
$a = '1';
$b = true;
echo $a == $b;