This has troubled me for a while, I know that => is to assign variables in an array, but I have no idea what -> means or how to use it, can anyone enlighten me? Thanks in adavance.
it is a way to refernce a method or property of an object. eg;
class my function a() { echo "this is a"; } } $my = new my(); $my->a();