我正在尝试创建一个从另一个网站加载随机页面的iframe。 URL只是域名,后跟一个数字。到目前为止,我已经尝试过PHP:
$number = int rand(0,450000);
$page = 'http://www.example.com/'$number;
问题是,我不知道如何创建iframe,以便$ page进入<iframe src=""></iframe>
也许是javascript的东西?不过我对JS不熟悉。我所知道的只是谷歌:
var randomnumber=Math.floor(Math.random()*450001)
但同样,我不知道如何继续。
答案 0 :(得分:1)
<?php
$rand = rand(0,450000);
$page = 'http://example.com/' . $rand;
?>
<!-- ... -->
<iframe src="<?php echo $page; ?>"></iframe>
<!-- ... -->
或者,更简洁:
<iframe src="http://example.com/<?= rand(0, 450000); ?>"></iframe>
<?= ... ?>
与<?php echo ... ?>
,btw。