$url = file_get_contents("
https://api.vk.com/method/wall.get?owner_id=-000000&domain='name'&v=5.34&count=100&filter='owner'&extended=1
");
$json = file_get_contents("http://api.vk.com/method/wall.get? ... .json");
$safe_json = str_replace("\n", "\\n", $json);
$data = json_decode($json);
var_dump($data);
// var_dump($safe_json);
$url = "https://api.vk.com/method/wall.get?owner_id=-000000&domain=%27name%27&v=5.34&count=100&filter=%27owner%27&extended=1";
$curl = curl_init();
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($curl, CURLOPT_URL, $url);
$response = curl_exec($curl);
curl_close($curl);
$content = json_decode($response,true);
print_r($content);