I have the following code in script I implement and it does work correctly, just want to understand:
$variable1 = function1(); // function1 is a class method, it’s file included per require_once
$ variable1 -> function2(); // function2 is a class method, it’s file included per require_once
Isn’t -> here an object operator? But there is no initialized instance save in $variable1.
Help appreciated