5

A simple PHP problem I couldn't find the answer to.

Is it possible to call a function from the "__construct()"?

For example if I use the My_Controller solution here. If I add my own function below, like if I have a more advanced auth, can I call it from the construct?

Vejto
  • 1,264
  • 1
  • 10
  • 17

1 Answers1

8

Yes, using the format $this->myNewFunction();

shanethehat
  • 15,460
  • 11
  • 57
  • 87