i have some file test.php
<?PHP
$config_key_security = "test";
?>
and i have some class
test5.php
include test.php
class test1 {
function test2 {
echo $config_key_security;
}
}