<?php
define("Value", 100);

function myGlobal() {
    echo Value;
}
 
myGlobal();
?>