User defined Constants : 

 

<?php

#Write a Program to define Your Own User defined Constants.

define('GRAVITY',9.8);

echo GRAVITY;

function test(){

echo GRAVITY; //Global Scope

}

#calling of test

test();

define('GRAVITY',10); //Cannot Be Resigned


Constant in php