I am just starting to learn and learn PHP. I have a decent background in Java and I'm trying to make some correlations. One of the completely unfamiliar characters I saw in PHP was the "object access delimiter"? -> as shown in this example:
<?php class SimpleClass {
From what I explored, it seems that the object access delimiter is equivalent to the dot notation used in Java. For example, in the example:
public class SimpleClass {
Is this a safe guess? Are there any additional ways to use this operator?
source share