PHP需要file_get_contents的随机位置而不仅仅是一个位置

时间:2013-05-03 12:34:26

标签: php random file-get-contents

这是我的代码的一部分。我无法在需要获取随机位置内容的地方工作。我知道如何从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" />

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

1 个答案:

答案 0 :(得分:1)

你过于本地化.......无论如何,

    $locations= Array('http://site1.com/content.txt','http://site2.com/content.txt');
    $title = file_get_contents($locations[array_rand($locations)]); 
    echo $title;