If the variable is $test unsetinside load.php.
This will affect your variable $testand you will be shown Notice: Undefined variable.
since the variables declared before the include statement will be available inside the included file, therefore, any action performed on the variable inside the included file will affect this variable.
source
share