Jump to content

[SOLVED] Variables inside class


PHPTOM

Recommended Posts

Hi all,

Ok I have a language file and a class.

Basically this is the class file:

<?PHP
include "language file";
class Layout{
function Top(){
...
function Bottom(){
..
}
}
?>

 

If I go to echo the $language variable, it doesn't display.

 

How can I use variables from outside of the function/class in the function?

so

function Top(){
echo $language['....'];
}

 

Thanks

Link to comment
https://forums.phpfreaks.com/topic/143793-solved-variables-inside-class/
Share on other sites

No basically I have an external language file. It is a big array of translations. I want to echo an array, so this is a better explanation:

language.php:

<?PHP
$language = array("hi" => "bonjour");
?>
[/plhp]

functions.php:
[code=php:0]
<?PHP
include "language.php";
class Layout{
function Top(){
echo $language['hi'];
}
}
?>

 

However it doesnt actually echo this. It is not echoing anything.

How can I do this?

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.