PHP sleep() not working(PHP睡眠()不起作用)
本文介绍了PHP睡眠()不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在制作一个php文件,它将在五分钟后运行一个事件。从文档中看,似乎等待5分钟只需要sleep(300)
,但这并不起作用。我已经测试了所有其他代码,在添加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 . "
";
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'];
}
?>
推荐答案
尝试在文档顶部添加set_time_limit(0);
。它可能正在达到"最大执行时间"并导致脚本终止。
这篇关于PHP睡眠()不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:PHP睡眠()不起作用
基础教程推荐
猜你喜欢
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01