Jump to content

PHP variables


ryan.od

Recommended Posts

How does PHP treat variables? What I mean is, if I set $auth = 1 in one script and then set $auth = 0 in another script, which value does the site recognize as the true value? Is each $auth unique to it's script (local) or are variables in PHP such as the $auth variable I am using global?

Thanks.

ryanod
Link to comment
https://forums.phpfreaks.com/topic/25619-php-variables/
Share on other sites

Okay so basically, it's how jwk811 put it, but theres a little more to it.  To put it clearly:

let's say i have a variable named $str.

up at the top of my file, $str = "Eric Cartman";

let's say I want to change the value of $str later in my script:  $str = "Stan Marsh";

but also, using the "." operator, i could add things to a string: $str .= " and Kenny McCormick";

which would echo "Eric Cartman and Kenny McCormick"

plus, if you include a file that contains a variable in another file, the variable is accessible in the file you included it to.
Link to comment
https://forums.phpfreaks.com/topic/25619-php-variables/#findComment-117128
Share on other sites

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.