2012-04-04 61 views
0

我有這個腳本,但它不工作,不知道如何解決它,請提供任何提示?我得到了另一端是字母 「t」簡單的隨機生成器腳本不工作

謝謝:)

<?php 
$cachefile = './current_t_id'; 
$time = $id = null; // assume we have no cached quote 
$change_every = 3600; // seconds 
$pages = array(1 => 'text1-1.php', 2 => 'text1-2.php'); 

foreach($pages as $pagekey => $page){ 
    if($pagekey == $siteId){ 
     include($page); 
    } 
} 

// if cached quote exists, load it 
if(is_file($cachefile)) { 
    list($time, $id) = explode(' ', file_get_contents($cachefile)); 
} 

// if no cached quote or duration expired, change it 
if(!$time || time() - $time > $change_every) { 
    srand ((double) microtime() * 100000); 
    $id = rand(0,count($page)-1); 
    file_put_contents($cachefile, time().' '.$id); // update cache 
} 

// echo the quote, be it cached or freshly picked 
echo ($page[$id]); 
?> 
+2

嘿錯誤的舉動。這是你的副本最後的帖子.. http://stackoverflow.com/questions/10011620/random-quotes-script-on-a-timer我不這是一個明智的舉動 – Baba 2012-04-04 15:07:09

+0

這不是一個複製美食 – GibsonFX 2012-04-04 15:08:48

+0

我已經添加了最後一篇文章中提出的建議,但我無法讓他們一起工作,所以我在尋求幫助,請不要在檢查事實之前指責我。 – GibsonFX 2012-04-04 15:10:09

回答

1

OK我要再給你3個不同的例子

變量

$quotes = array (
     "hello", 
     "baba", 
     "luke" 
); 


$pages = array(1 => 'text1-1.php', 2 => 'text1-2.php'); 

A.使用隨機引用

// Using Ramdom Quptes 
$key = array_rand ($quotes); 
echo $quotes [$key]; 
//Or 
include($pages[$key]) ; 

B.使用羅賓

// Using Robin 
$cacheFile = "robin.cache"; 
$robin = null; 
$quotesID = intval (file_get_contents ($cacheFile)); 
$totalQuotes = count ($quotes); 

$key = ($quotesID < ($totalQuotes - 1)) ? $quotesID ++ : 1; 
file_put_contents ($cacheFile, $quotesID); 

echo $quotes [$key]; 
//Or 
include($pages[$key]) ; 

使用定時器

// Using Timer 

$cacheFile = "timer.cache"; 
$expiration = 3600; 

$robin = null; 
list($quotesID, $time) = explode(' ', file_get_contents($cacheFile)); 
$totalQuotes = count ($quotes); 

if($time < (time() - $expiration)) 
{ 
    $key = mt_rand(0,count($pages)-1); 
    file_put_contents($cacheFile, time().' '.$id); 
} 
echo $quotes [$key]; 
//Or 
include($pages[$key]) ; 

我希望您的問題,現在可以解決

感謝 :)

+0

好的,我會付出這個,謝謝:) – GibsonFX 2012-04-04 15:30:35

+0

很高興知道你已經解決了這個問題。 – Baba 2012-04-04 15:36:39

+0

我以前對我們的誤會表示抱歉。我的錯 – GibsonFX 2012-04-04 15:38:06