代码拉取完成,页面将自动刷新
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<p>You should consider getting a
<?php
// Load files
$f_adjectives = fopen("adjectives", "r");
$f_colours = fopen("colours", "r");
$f_nouns = fopen("nouns", "r");
// Create Arrays
$adjectives = array();
$colours = array();
$nouns = array();
// Load Strings into Arrays
while ( ! feof($f_adjectives))
{
array_push($adjectives, fgets($f_adjectives));
}
while ( ! feof($f_colours))
{
array_push($colours, fgets($f_colours));
}
while ( ! feof($f_nouns))
{
array_push($nouns, fgets($f_nouns));
}
// Pick random word and print
$index = rand(0, sizeof($adjectives) - 1);
echo $adjectives[$index];
echo " ";
$index = rand(0, sizeof($colours) - 1);
echo $colours[$index];
echo " ";
$index = rand(0, sizeof($nouns) - 1);
echo $nouns[$index];
echo " ";
?>
for a pet.</p>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。