Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
makeリクエスト後にアイドル状態になるcurlリクエストを作成するにはどうすればよいですか?
ユーザーが任意のサイトにアクセスしてしばらくアイドル状態になるのと同じ状態にしたいのですが、PHPでそれを実現したいと思います。
例:www.siteblalala.comの場合、curlを使用してそのサイトでphpをアイドル状態にしたいのですが、どうすればよいですか?
スリープ機能を使用します。
sleep(2); //wait for 2 seconds
説明:
プログラムの実行を指定された秒数だけ遅らせます。
睡眠機能を試す
// sleep for 10 seconds sleep(10);