I'm familiar with objects classes and methods in JavaScript and it is very common to create a class, declare a method then write the function for that method outside of the class itself. Similar to what I have in the pseudo code below:
START CLASS PersonClass{
this.name = "DAVE";
this.getname...
In the C, C++ language as well and a dozen other languages there is a 'Main' function where a program always starts executing from. You never have to call main, the language just knows the main is where to start. Is there a PHP equivalence to the Main function call? Some function that when you...