Главная > PHP > simplexml_load_file timeout

simplexml_load_file timeout

function simplexml_load_file_from_url($url,$timeout=60){
	$opts=array('http'=>array('timeout'=>(int)$timeout));
	$context=stream_context_create($opts);
	$data=file_get_contents($url,false,$context);
	if(!$data){
		return false;
	}
	return simplexml_load_string($data);
}

использовать вместо simplexml_load_file

Categories: PHP Tags:
  1. Пока что нет комментариев.
Похожие публикации