what is the meaning of a symbol

This question already has an answer here:

  • Where do we use the object operator “->” in PHP? [closed] 4 answers

  • check out this link for more information: http://php.net/manual/en/language.oop5.properties.php

    the short of it is they are used to interact with properties and functions within an object or class.


    -> Symbol is used to access an object's property. Example if i have a user object that contains the property "name", "age". To access them i can do $user->name, $user->age.

    链接地址: http://www.djcxy.com/p/58144.html

    上一篇: >“是什么意思?

    下一篇: 符号的含义是什么?