I've included a file in my php script, but for some reason, it can't read a variable I've declared globally, because including the file...

How I've arranged everything:

The include is inside a function

The variable is declared globally (note: even when I declare the variable one line before the include, it can't read the variable (this is in a function though))

The included file reads the variable from a function (in other words: the statement if ($errorcheckonly==true) {} is inside a function in the included file)

Could any of this have an influence on why it's not working?

Code example:

Main file:
$errorcheckonly = true; //declared here or declared beneath, not both
function processOrder() {
$errorcheckonly = true;
include 'passengersform.php'; //forced to only use error checks
}
processOrder();

Included file:
function processtickets () {
echo '<script language="javascript">alert("'.$errorcheckonly.'");</script>';
if ($errorcheckonly==true) { exit; }
}
processtickets();
link|improve this question

76% accept rate
1  
Please show your code. If it is long, try to create a minimal example that reproduces your problem. You might find the solution by yourself while creating this example... :-) – Anders Lindahl Dec 3 '11 at 20:12
That is the reason why I described the layout. But like you asked, I added a piece of code. :) – laarsk Dec 3 '11 at 20:18
feedback

2 Answers

up vote 1 down vote accepted

See this other example

<?php
    $var = 'test' ;

    function A ( ) {
        global $var ;

        echo $var ;
    }   

    A ( ) ;

The output is test

link|improve this answer
I now have declared $errorcheckonly outside any function, used global $errorcheckonly; to read it in both the function in the main file as in the function in the included file, thanks! – laarsk Dec 3 '11 at 20:32
Is it also possible to declare a global variable from a function, without declaring it outside that function? – laarsk Dec 3 '11 at 20:33
1  
yes, just see first example. – Andrey Knupp Dec 3 '11 at 20:34
Ah ok, too bad I can't do global variable = value; but I guess I can live with that, haha – laarsk Dec 3 '11 at 20:38
THank you very much for your help once again! – laarsk Dec 3 '11 at 20:39
show 1 more comment
feedback

See this simple example

<?php
function A ( ) {
    global $var ;
    $var = 'test' ;
}

A ( ) ;

function B ( ) {
    global $var ;
    echo $var ;
}   

B ( ) ;
link|improve this answer
Isn't a variable global by default when I declare it outside a function? – laarsk Dec 3 '11 at 20:23
1  
@laarsk No. Read the php docs for more on variable scope (php.net/manual/en/language.variables.scope.php) – PhpMyCoder Dec 3 '11 at 20:24
1  
No, but either way, you'll have to use global $ var within the function that will define the scope for you – Andrey Knupp Dec 3 '11 at 20:24
Wow. This is an eye opener for me. Really because I've done similar things before, and it always worked perfect for me... Also, would I have to use global to read the variable? Now that's weird. (However, very handy aswell, as you can now have duplicate variables?) – laarsk Dec 3 '11 at 20:26
feedback

Your Answer

 
or
required, but never shown

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