Examveda
Examveda

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

A. hellolength

B. 5

C. hi

D. error

Answer: Option B

Solution(By Examveda Team)

The function strlen($a) gives the length of the string,5, which is considered true.

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

Join The Discussion

Comments ( 1 )

  1. Gow R
    Gow R :
    6 months ago

    B.5

Related Questions on Control Structures(Loop in PHP)