I'm in the process of creating a php site. It uses multiple php classes, which are currently all in one php include.
However, I am using aptana IDE, and the file is now starting to crash it (its around 400 lines). So I was wondering whether there would be any negative impact of including all the files seperately.
Current:
main file:
include("includes.php");
includes.php:
contains php classes
Suggested:
mainfile: main file:
include("includes.php");
includes.php:
include("class1.php");
include("class2.php")