Examveda
Examveda

What will be the output of the following PHP code ?
<?php
class myObject { }
define('myObject::CONSTANT', 'test');
echo myObject::CONSTANT; 
?>

A. test

B. error

C. myObject::CONSTANT

D. no output

Answer: Option B

Solution(By Examveda Team)

Class constants cannot be defined outside class.

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

Join The Discussion

Related Questions on Operators and Expressions in php