Jump to content

Php -> function


Abhi2011
Go to solution Solved by Irate,

Recommended Posts

Hello guys,

I am learning PHP and what better way to do it than reading and understanding code. 

But I have a question what does the function do?

-> 

Here is a sample code from MyBB


$username = &$this->data['username'];

And what does the & operator do? 

 

Thanks,

Abhi2011

Link to comment
Share on other sites

  • Solution

Hello guys,

I am learning PHP and what better way to do it than reading and understanding code. 

But I have a question what does the function do?

-> 

Here is a sample code from MyBB

$username = &$this->data['username'];

And what does the & operator do? 

 

Thanks,

Abhi2011

 

The -> operator is only available for objects and refers to modules, methods or variables of an object, $this is the currently used object, so $this->data['username'] selects the array key 'username' from the array data which is defined in the current object.

 

The & operator can be used either as unary operator where it is used for bit shifting or as so-called reference passer, means &$this is the reference to $this, all modifications to $data will affect $this, too.

Link to comment
Share on other sites

Because you want to have data['username'] within the current object as there might exist other identically named arrays in other objects or in a global/local scope, imagine, username data can be used within many scripts.

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.