Kavramı functions size tanıdık değilse, onlar kod yeniden kullanılabilir bloklar temel konum. Eğer oluşturduğunuz işlevleri bir grup varsa, muhtemelen siteniz boyunca burada ve orada onları yeniden kullanmak istiyorum. Peki ne merkezi bir dosya (ya da "konu" ile gruplandırılmış) ve include
onlara ihtiyaç duyduğunuz her sayfada onları toplamak.
// In file "often_used_functions.php"
function foo () { ... }
function bar () { ... }
function reticulate_splines () { ... }
---------------------------------------
// In some other file:
include "often_used_functions.php";
foo();
It's all to make code re-usable.
I.e. if you find yourself writing basically the same code again and again with only slight variations, put that code into a function and put that function into some central, re-usable file.