Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
<?php
// get file
$path = array(
'path/file1',
'path/file2',
'path/file3'
'path/file4'
'path/file5');
$index = count($path) - 1;
$index = rand(0, $index);
$file = file($path[$index]);
// get line
$index2 = count($file) - 1;
$index2 = rand(0, $index2);
$line = $file[$index2];
// output
echo $line;
?>