I am building an application which does some heavy repetition of functions.
For instance:
$Class = new Class;
for($i; $i < 1000; $i++) {
$Class->get_something();
}
I have read so many articles on OOP and why it is slow, but I still don't understand where exactly the "slow" part is. People keep using the world "overhead," is that loading the actual class? Once I require
a class, is it now the same speed when I call function or a variable?