<?php
function rand_word(){
$lines = file("words.txt") ;
$random_index = rand(0,count($lines)-1);
$random_line = $lines[$random_index];
$definition = explode("\t", $random_line)
}
?>
<html>
words:
part:
definition:
</html>
两个问题:我如何在 html 中调用爆炸行,我尝试了下面的代码,但它们都不起作用。
<?=$definition[0]?>
<?php rand_word(); ?>
<?php echo rand_word(); ?>
<?php echo defintion[0]; ?>
文件中的一行例如: rescind verb to take away 或 remove
万千封印
一只名叫tom的猫