我想知道如何在一个目录中获取一个随机文件并打开它。这应该使用一个按钮来执行,该按钮启动一个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
无论如何我可以做这个工作吗?
答案 0 :(得分:2)
您在第一行末尾缺少分号:
$class = array(1, 2, 3, 4, 5);