Home>IT Tests>Questions>What is the output of the following PHP code?
```
$a = 1;
$b = 2;
$c = 3;
$d = $a + $b + $c;
echo $d;
```
Question from the PHP5 test
What is the output of the following PHP code? ``` $a = 1; $b = 2; $c = 3; $d = $a + $b + $c; echo $d; ```
Hard
What will the following script display?
<?php
$a = array(“foo” => “bar”, array(“foobar” => “baz”));
echo count($a, true);
?>
Author: Mathieu RobinStatus: PublishedQuestion passed 69 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!
0
What are the risks of including a file multiple times in PHP?0
PHP session_start() function0
What is the output of the following code? `echo time();`1
Validate a URL with a 'name' parameter whose value is 'John Doe'.0
What are the two superglobals that are used to access the query string?0
What is the output of the following code?
$a = 'hello';
$b = &$a;
$b = 'world';
echo $a;1
What is the difference between an interface and a class in PHP?