vote up 0 vote down star

I have a settings.php file with parametric variables and a functions.php with well, some functions.

functions.php uses some parameters from settings.php and also, functions.php is required once inside index.php. Well, for some reason, when trying to execute index.php the functions can not read the parameters from settings.php in this method. Does anyone know why and a possible workaround for this?

Thanks!!

flag

63% accept rate
How is the settings.php looks like? Does it declare some global variables which you want to use it in functions.php? If you functions.php should include or require settings.php. If you already done that, post the code, the problem might be something else. – NawaMan Nov 2 at 3:51

1 Answer

vote up 1 vote down check

Your problem is probably variable scope.

Any variable used inside a function is by default limited to the local function scope.

However, without more information it's hard to say for certain. You can find a full explanation of variable scope and global vs. local variables in the PHP manual.

Adding a line like the one below will likely resolve the issue.

<?php
global $variable_name_from_settings_dot_php;
?>

After that line, inside the function, you would have access to $variable_name_from_settings_dot_php as it was defined in settings.php.

link|flag
A simple solution to a hard to explain issue! THANKS! – Gabriel A. Zorrilla Nov 2 at 15:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.