如何使用php打开随机文件?

时间:2015-11-17 00:49:45

标签: php html forms

我想知道如何在一个目录中获取一个随机文件并打开它。这应该使用一个按钮来执行,该按钮启动一个php脚本。例如:

HTML:

<form action="./generate.php" method="get">
    <span>arg1</span><input type="checkbox" name="level_arg1">
    <span>arg2</span><input type="checkbox" name="arg2_" >
    <span>arg3</span><input type="checkbox" name="arg3_">
    <input type="submit" id="generate" value="Submit">
</form>

PHP:

<?php
$class = array(1, 2, 3, 4, 5)
$rand = array_rand($class);
file_get_contents("http://localhost/class/" . $rand . ".html");
?>

我尝试了上述内容,但错误提示:

Parse error: syntax error, unexpected '$rand' (T_VARIABLE) in <directory>\generate.php on line 3

无论如何我可以做这个工作吗?

1 个答案:

答案 0 :(得分:2)

您在第一行末尾缺少分号:

$class = array(1, 2, 3, 4, 5);