2012-06-12 15 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

इसका मतलब क्या है कि यह काम नहीं कर रहा है? क्या आपके पास नींद() कॉल होने पर PHP स्क्रिप्ट पूरी तरह से काम करना बंद कर देती है? क्या यह सोता है, लेकिन पांच मिनट के लिए नहीं? – andrewsi

+0

यह बिल्कुल काम नहीं करता है। यह ट्विटर पर कुछ भी पोस्ट नहीं करता है, जैसा कि इसे करना चाहिए। – SomeKittens

+1

आपके php.ini में आपका 'max_execution_time' क्या है? शायद लिपि बहुत लंबी चल रही है और इसलिए कुछ भी करने से पहले मौजूद है। – enricog

उत्तर

8

दस्तावेज़ के शीर्ष पर set_time_limit(0); जोड़ने का प्रयास करें। संभावना है कि यह "अधिकतम निष्पादन समय" तक पहुंच रहा है और स्क्रिप्ट को समाप्त कर रहा है।

+0

ऐसा लगता है कि यह समस्या को ठीक करेगा, अगर यह काम करता है तो मैं आपको पांच मिनट में बता दूंगा। – SomeKittens

+0

बहुत बढ़िया! आपका बहुत बहुत धन्यवाद। – SomeKittens

+2

वैकल्पिक रूप से, 'set_time_limit (315); ', या 300 + जो भी आपके अपेक्षित अधिकतम निष्पादन समय है। अगर किसी कारण से प्रक्रियाएं फंस जाती हैं, तो बेहतर है कि दुर्घटना से आपकी प्रक्रिया तालिका को समाप्त न करें! – ghoti

संबंधित मुद्दे