PHP program to create a case in-sensitive constant using define() function

Here, we are going to learn how to create a case in-sensitive constant using define() function in PHP?
Submitted by Nidhi, on November 11, 2020 [Last updated : March 13, 2023]

Creating a Case Insensitivity Constant in PHP

Here, we will create a case in-sensitive PI constant using the defined function.

Syntax

define(constant_name,value,flag);

Here, the first parameter specifies the name of the constant and the second parameter specifies the value of the constant and the flag is used for case insensitivity, if we pass TRUE for the flag then the name of the constant will be case insensitive.

PHP code to create a case insensitive constant using define() function

The source code to create a case in-sensitive constant using the define() function is given below. The given program is compiled and executed successfully.

<?php
//PHP program to create a constant
//using define() function.

define(PI, 3.14);

$radius = 5;

$area = PI * $radius * $radius;

print ("Area of circle: " . $area);
?>

Output

Area of circle: 78.5

Explanation

In the above program, we created a case insensitive constant PI using the define() function that contains value 3.14. Then we created a local variable $radius initialized with 5. Then calculate the area of the circle and print the result on the console screen.

PHP Class & Object Programs »



Related Programs



Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.