functions-ek.php
// Bu dosyaya kendi kodlarınızı ekleyebilirsiniz. Yazacağınız kodlar functions.php dosyasına dahil edilecektir.
?>
2 adet böyle dosya var
functions.php
$safirPHPVersion = phpversion();
if(strlen($safirPHPVersion) >=3) $safirPHPVersion = substr($safirPHPVersion, 0, 3);
switch ($safirPHPVersion) {
case '7.2':
include("functions/php.7.2.php");
break;
case '7.3':
include("functions/php.7.3.php");
break;
default:
include("functions/php.7.1.php");
break;
}