Examveda
Examveda

What will be the output of the following PHP code ?
<?php
$a = "1";
$b = "0";
if ((int)$a && $b) 
    print"hi";
else 
    print "hello";
?>

A. hello

B. no output

C. hi

D. error

Answer: Option A

Solution(By Examveda Team)

The expression is evaluated with values contained in the string, even without typecasting.

This Question Belongs to PHP >> Control Structures(Loop In PHP)

Join The Discussion

Related Questions on Control Structures(Loop in PHP)