php 睡眠,PHP sleep()无效

我正在制作一个php文件,它将在五分钟后运行一个事件.从文档来看,似乎等待五分钟只需要睡眠(300),但这不起作用.我已经测试了所有其他代码,它工作正常,直到我添加睡眠线.

/**

* 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'];

}

?>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值