2012-06-12 106 views
5

我正在製作一個php文件,它會在五分鐘後運行一個事件。從文檔看,等待五分鐘似乎只需要sleep(300),但這不起作用。我測試了所有其他代碼,並且它工作正常,直到我添加sleep行。PHP睡眠()不起作用

<?php 
/** 
* Twitter App 
* bagelBack.php 
* Takes parameters from $_POST and creates a tweet 
* RKoutnik, 2012 
* Code originally found on http://140dev.com/twitter-api-programming-tutorials/hello-twitter-oauth-php/ 
*/ 

$name = '@'.$_POST['twitterName']; 
$type = $_POST['bagelType']; 

/* BEGIN CONTENT SPINNER TO IMPRESS LYNK */ 
$bagels = array(
    0 => "bagel", 
    1 => "breakfast treat", 
    2 => "doughy food-type item", 
    3 => "round yeast-raised munchie", 
    4 => "doughnut-shaped roll", 
    5 => "hard-crusted treat" 
); 
$finished = array(
    0 => "finished toasting", 
    1 => "completed toasting", 
    2 => "stopped being raw", 
    3 => "concluded the toasting phase", 
    4 => "been sucessfully executed", 
    5 => "been roasted to a crisp" 
); 

$food = $bagels[array_rand($bagels)]; 
$fin = $finished[array_rand($finished)]; 
sleep(300); 
$tweet_text = $name.", Your ".$type." ".$food." has ".$fin; 

$result = post_tweet($tweet_text); 
echo "Response code: " . $result . "\n"; 

function post_tweet($tweet_text) { 

    // Use Matt Harris' OAuth library to make the connection 
    // This lives at: https://github.com/themattharris/tmhOAuth 
    require_once('tmhOAuth.php'); 

    // Set the authorization values 
    // In keeping with the OAuth tradition of maximum confusion, 
    // the names of some of these values are different from the Twitter Dev interface 
    // user_token is called Access Token on the Dev site 
    // user_secret is called Access Token Secret on the Dev site 
    // The values here have asterisks to hide the true contents 
    // You need to use the actual values from Twitter 
    $connection = new tmhOAuth(array(
    'consumer_key' => '[redacted]', 
    'consumer_secret' => '[redacted]', 
    'user_token' => '[redacted]', 
    'user_secret' => '[redacted]', 
    'curl_ssl_verifypeer' => false 
)); 

    // Make the API call 
    $connection->request('POST', 
    $connection->url('1/statuses/update'), 
    array('status' => $tweet_text) 
); 

    return $connection->response['code']; 
} 
?> 
+1

你是什麼意思,它不工作?當您有sleep()調用時,PHP腳本是否完全停止工作?它睡覺,但不是五分鐘? – andrewsi

+0

它根本不起作用。它不會向Twitter發佈任何內容,就像它應該一樣。 – SomeKittens

+1

你的php.ini中有什麼'max_execution_time'?也許腳本運行時間過長,因此在任何事情完成之前就存在。 – enricog

回答

8

嘗試在文件的頂部添加set_time_limit(0);。它有可能達到「最大執行時間」並導致腳本終止。

+0

這聽起來像是可以解決這個問題,我會在五分鐘內讓你知道它是否工作。 – SomeKittens

+0

太棒了!非常感謝你。 – SomeKittens

+2

或者,'set_time_limit(315);'或300 +無論您的預期最大執行時間是多少。如果由於某些原因,流程卡住了,最好不要意外排空流程表! – ghoti