Просмотр поста

.
Rakovskiy
The Fast, Secure and Professional - Yii2

У каждого пользователя свой порядок.

function nextKey(array $array, $cookieKey){
    $myKey = isset($_COOKIE[$cookieKey]) ? abs($_COOKIE[$cookieKey]) : 0;
    $nextKey = isset($array[$myKey]) && isset($array[$myKey + 1]) ? $myKey + 1 : 0;
    setcookie($cookieKey, $nextKey, time() + 86400);

    return $nextKey;
}



$files = [
    'data/file1.txt',
    'data/file2.txt',
];

$key = nextKey($files, 'slider');
$path = isset($files[$key]) ? $files[$key] : null;

if ($path && is_file($path)){
    $file = file_get_contents($path);

    echo $file;
}


$files - Массив с файлами которые нужно выводить.

Этот код будет выводить содержимое файла.