This commit is contained in:
Igor Barkov (iwork)
2020-06-23 17:43:14 +03:00
parent 2bc639a5c1
commit 3d7436c0d9
4 changed files with 10 additions and 6 deletions
+4 -2
View File
@@ -1,10 +1,11 @@
<?php
echo 'functions.php.topstart';
/**
* Copyright (c) 2018.
* Author: Igor Barkov <lopar.4ever@gmail.com>
* Project name: Battles-Game
*/
echo '1';
echo 'functions.php.start';
require_once 'config.php';
echo '1';
/**
@@ -2130,4 +2131,5 @@ function addOnePoint($name, $param = null)
function checkIntInRange($int, $min = 1, $max = PHP_INT_MAX)
{
return (int)filter_var($int, FILTER_VALIDATE_INT, ['options' => ['min_range' => $min, 'max_range' => $max]]);
}
}
echo 'functions.php.end';