Examveda
Examveda

What will be the output of the following PHP code ?
<?php
$x = 5;
{
    $x = 10;
    echo "$x";
}
echo "$x";
?>

A. 1010

B. 105

C. 510

D. error

Answer: Option A

Solution(By Examveda Team)

Varibale x stores the value 10 and not 5.

This Question Belongs to PHP >> Operators And Expressions In Php

Join The Discussion

Related Questions on Operators and Expressions in php