Jump to content

Does PHP have a 'my' equivalent?


pcw

Recommended Posts

Hi,

 

I am using this section of a PERL script as an example:

 

my ($action, $return) = @_;

my $out;

 

I know that 'my' declares the listed variables to be local (lexically) amd  was wondering if there was an equivalent to 'my' in PHP.

 

Any help would be much appreciated

Link to comment
Share on other sites

First off PHP has page scope.  That is to say that scripts run, variables are created and when the script finishes everything is disposed of. 

 

Inside a script you can have functions and classes defined.  All variables inside a function or class have local scope.  Additionally variables declared in page scope (globally) are not visible inside class methods or functions.  To use a global you would have to actually declare it as such inside a function, which would then allow the function to access the global variable's value.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.