PHP 의 fileget_콘 텐 츠 설정 시간 초과

919 단어 PHP직장레저
1.
ini_set('default_socket_timeout', '5');
file_get_contents("http://lyxint.com/");

2.
$context = stream_context_create(
    array(
        'http' => array(
            'timeout' => 5,
        )
    )
);
file_get_contents("http://lyxint.com/", 0, $context);

좋은 웹페이지 즐겨찾기