I need information on including files in PHP classes. EG.
include Foo2.php;
class Foo {
function doFoo(){
include("Foo2.php");
}
}
I was wondering what the differences were outside the scope, and whether there were other ways to include another php file in the class.
Thanks in advance for any answers.
Mozez source
share