Trying to improve my code's agility and loading time, I thought of doing this, so that the functions would be required only if the class was instantiated.
class User
{
public function __construct()
{
require('all_user_fns.php');
}
}
All_user_fns.php içindeki tüm Kullanıcı sınıfın fonksiyonlarını ikamet edecek.
(Belki başka bir şekilde) uygulanabilir mi? Bu hız söz konusu olduğunda herhangi bir avantaj var mı?
Teşekkürler.