WordPress Development Question:
Download Questions PDF

Can you please explain the difference between accessing a class method via -> and via ::

Answer:

:: is allowed to access methods that can perform static operations, i.e. those, which do not require object initialization.

Download WordPress Expert Interview Questions And Answers PDF

Previous QuestionNext Question
How come code
<?php print "Contents: $arr[1]"; ?>
works, but
<?php print "Contents: $arr[1][2]"; ?>
doesn't for two-dimensional array of mine?
If the variable $a is equal to 5 and variable $b is equal to character a, what's the value of $$b?