如何延迟5秒然后使用file_get_contents PHP?

时间:2016-11-28 15:11:27

标签: php

如何延迟5秒然后使用file_get_contents PHP?

我使用此代码使用网址从网页获取文字。

的index.php

<?PHP
$text = file_get_contents('https://www.othersite.com/test_1.php');
echo strip_tags($text); // If you only need text not html structure
?>

https://www.othersite.com/test_1.php

<meta http-equiv="refresh" content="5;url=https://www.othersite.com/test_2.php">

https://www.othersite.com/test_2.php

HELLO WORLD.

当我加载mysite(index.php)时。如何延迟5秒然后使用file_get_contents,它将显示结果HELLO WORLD.

2 个答案:

答案 0 :(得分:3)

您可以使用PHP函数sleep

示例:

<?PHP
sleep(5); //Sleeps for 5 sec
$text = file_get_contents('https://www.othersite.com/test_1.php');
echo strip_tags($text); // If you only need text not html structure
?>

答案 1 :(得分:1)

使用:

sleep(5); // seconds

功能