That's easy. It's an arrow.
Ok ok. That particular arrow in PHP is a way to refer to a method or variable of an object. An object such as a class is a good example:
PHP Code:
<?php
class HelloWorld {
var $hello;
function HelloWorld(){
$this->hello = "Hello PHP newbie";
}
function say_hello(){
return $this->hello;
}
}
$my_class = new HelloWorld;
echo $my_class->say_hello();
?>
That is just a simple example of creating a class and putting a function in there that returns a string. To refer to the function within that class we first create an instance of it
$my_class = new HelloWord;
then to access the function within it we use the arrow
$my_class->function_name();