In the sidebar of the php web manual, link text the addChild method uses the :: scope resolution operator, but in the example it uses the Arrow operator. Can anyone tell me why that is?
In the sidebar of the php web manual, link text the addChild method uses
Share
::is for static elements while->is for instance elements.For example:
More about the static concept