Jump to content

[SOLVED] PHP "->" What does that mean?


Garath531

Recommended Posts

Yeah, in alot of languages most properties or functions are accessed using ., rather than -> but it's the same thing.

 

Like if you create a class, and a function within the class.

 

Let's assume the class is called test_class and the function test_function.

 

Also assuming the class is in the same document (for the purpose of simplcitiy) you could call the function like:

 

test_class->test_function();

 

I came across this the other night, though I don't use classing myself, no need for it really, extra bloat when unnecessary but it has it's used.

Link to comment
Share on other sites

I came across this the other night, though I don't use classing myself, no need for it really, extra bloat when unnecessary but it has it's used.

 

Yes there is need for it because doing so actually reduces bloating significantly. Learn to become proficient in OOP before you dismiss it so easily. There are quite a lot of things you can do with OOP that make your code both smarter and less bloated that cannot be done in "Procedural".

 

-> means "Points at"

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.