Welcome Guest, Not a member yet? Register   Sign In
Confused about variables
#8

(This post was last modified: 07-29-2016, 09:10 AM by dave friend.)

(07-29-2016, 08:44 AM)MightBeABitLate Wrote: Does all this mean that what are often called variables when referring to controllers are actually just statics, and are more akin to constants given that the controller and everything associated with it are destroyed once the view is rendered and served out to the user?

While it is true that everything associated with the controller are destroyed once the view is rendered and served out variables are well... variable. They exist while the script is executing and can be assigned new values. Constants cannot be assigned new values once defined.

In PHP a static variable relates to variable scoping. Static variables exist only in a local function scope, but it does not lose its value when program execution leaves this scope. The must be explicitly declared as static ie. static $count = 0;

I suppose that class properties that are variables might be considered static in that they maintain an assigned value for the lifetime of the class - except they never go out of scope in the context of the class.
Reply


Messages In This Thread
Confused about variables - by MightBeABitLate - 07-27-2016, 03:35 PM
RE: Confused about variables - by InsiteFX - 07-28-2016, 04:28 AM
RE: Confused about variables - by mwhitney - 07-28-2016, 10:24 AM
RE: Confused about variables - by MightBeABitLate - 07-29-2016, 05:06 AM
RE: Confused about variables - by mwhitney - 07-29-2016, 07:26 AM
RE: Confused about variables - by dave friend - 07-29-2016, 08:27 AM
RE: Confused about variables - by MightBeABitLate - 07-29-2016, 08:44 AM
RE: Confused about variables - by mwhitney - 07-29-2016, 09:53 AM
RE: Confused about variables - by dave friend - 07-29-2016, 09:05 AM
RE: Confused about variables - by PaulD - 07-29-2016, 09:11 AM
RE: Confused about variables - by MightBeABitLate - 07-29-2016, 10:42 AM
RE: Confused about variables - by dave friend - 07-29-2016, 11:28 AM
RE: Confused about variables - by MightBeABitLate - 07-29-2016, 11:54 AM
RE: Confused about variables - by mwhitney - 07-29-2016, 12:17 PM
RE: Confused about variables - by fmertins - 07-29-2016, 01:14 PM
RE: Confused about variables - by mwhitney - 07-29-2016, 02:01 PM



Theme © iAndrew 2016 - Forum software by © MyBB