How to get website data using file_get_contents
when my country blocked this site ?
I use this code for get data from website
$url_xxx = "https://www.example.com";
$text_all = file_get_contents($url_xxx);
$text_all = strip_tags($text_all); // If you only need text not html structure
echo $text_all;
But my country was blocked https://www.example.com
I want to know how to get website data using file_get_contents
when my country blocked this site ?