What will be the output of the following PHP code?

🎲 Try a Random Question  |  Total Questions in Quiz: 52  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
PHP Programming Basics Practice Test: Functions in PHP — practice the complete quiz, review flashcards, or try a random question.

A function in PHP is a piece of code that takes in input as a parameter, processes it, and returns a value. Functions can be used repeatedly in a program. A function is defined using the following syntax:  A valid function name in PHP starts with a letter or underscore, followed by any number of letters, numbers, or underscores. A function contains a set of instructions to be executed, defined by using the keyword function followed by the name of the function, the parentheses which contain the parameters, and finally the curly braces which contain the code block.  To call a function, you... Show more

What will be the output of the following PHP code?<br> <?php<br> define("GREETING","Hello you! How are you today?");<br> echo constant("GREETING");<br> ?>