2012-06-12 20 views
5

私は5分後にイベントを実行するPHPファイルを作成しています。ドキュメントからは、5分待つのはsleep(300)が必要なようですが、これは機能しません。私は他のすべてのコードをテストしましたが、sleep行を追加するまでうまくいきます。PHP sleep()が動作しない

<?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スクリプトが完全に機能しなくなるのですか?それは眠っていますが、5分間は眠れませんか? – andrewsi

+0

全く動作しません。それはすべきであるように、それはツイッターに何も投稿しません。 – SomeKittens

+1

php.iniの 'max_execution_time'とは何ですか?たぶん、スクリプトはあまりにも長く実行されているので、何かが実行される前に存在するかもしれません。 – enricog

答えて

8

set_time_limit(0);を追加してください。 "最大実行時間"に達してスクリプトが終了する可能性があります。

+0

これは問題を解決するように聞こえますが、もし問題がなければ5分でお知らせします。 – SomeKittens

+0

恐ろしい!どうもありがとうございました。 – SomeKittens

+2

代わりに、 'set_time_limit(315);'、または予想される最大実行時間は300 +です。何らかの理由でプロセスが停止した場合は、偶然プロセステーブルを使い果たしてはいけません! – ghoti

関連する問題