0

这是我的代码的一部分。在需要获取随机位置的内容的地方,我无法使这部分工作。我知道如何从 url 获取 file_get_contents,但我需要在脚本的每个页面加载时获取随机 url 内容。我得说..

contents of http://site1.com/content.txt
contents of http://site2.com/content.txt
contents of http://site3.com/content.txt
etc.. one at a time random

这是代码:

<p><label for="title">Title</label><br />
<input type="text" id="title" value="<?php $title = file_get_contents('http://www.site1.com/content.txt'); echo $title; ?>" tabindex="1" size="120" name="title" />

上面的代码适用于获取内容的一个位置,但我需要该位置在每个页面加载时都是随机的。我该怎么做?

4

1 回答 1

1

你太本地化了.......无论如何,

    $locations= Array('http://site1.com/content.txt','http://site2.com/content.txt');
    $title = file_get_contents($locations[array_rand($locations)]); 
    echo $title;
于 2013-05-03T12:38:35.607 回答