Let's say I have a class in php, and it includes some functions.
The class is named "something".
When I load the file on another file, I noticed it goes like:
include("the_file_with_the_class.php"); $something = new something(true);
now I can do OOP, I know, like $something->the_function, but what is that "(true)" in the variable? That really confused me a lot.