Answers for "are we use global variable one file to other file in php"

PHP
0

php set global variables from function

<?php 
function setGlobalVariable() {
    $GLOBALS['variable_name'] = "Some Value";
}
setGlobalVariable();
echo $variable_name;
// Outputs: Some Value
Posted by: Guest on September-10-2021
0

php include inside function global

function importSomething(){
   return include_once 'something.php';
}
Posted by: Guest on October-12-2021

Code answers related to "are we use global variable one file to other file in php"

Browse Popular Code Answers by Language