Examveda
Examveda

What will be the output of the following PHP code?
<?php
function onespan>()
{
    define("const","I am awesome!");
    echo constant("const");
}
one();
?>

A. I am awesome!!

B. const

C. const, I am awesome!!

D. “const”,”I am awesome!”

Answer: Option A

Solution(By Examveda Team)

Using the define function to define the constant “const”.

This Question Belongs to PHP >> Functions

Join The Discussion

Related Questions on Functions