Dear Sir,
I want to optimize my php code, by replacing "include" by "require_once". So if i have different PHP files that include the same php file..is it worth to replace each include by require_once in each file.
And if in the same php file, for example include("connect.php") is used more than once ( in each function )..what shall i do here to avoid the repetition of include?
can i replace each include by require_once
Require is better than Require_once (regarding the speed)??
if anyone can help me
Thank you..