I am creating a PHP website . It uses several PHP classes that are currently in the same PHP.
However, I am using the Aptana IDE , and the file now crashes (about 400 lines). Therefore, I was wondering if there would be any negative impact on the inclusion of all files separately.
Current:
main file:
include("includes.php");
includes.php:
contains php classes
Recommended:
mainfile: main file:
include("includes.php");
includes.php:
include("class1.php");
include("class2.php")
source
share