Advertisement
Ostap34JS

Untitled

Feb 25th, 2017
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.54 KB | None | 0 0
  1.         <?php
  2.         $url = file_get_contents("https://api.vk.com/method/wall.getById?posts=93388_21539,93388_20904,%20-1_340364");
  3.         if(!$url){
  4.             echo"Шось не так з змінною url!!!";
  5.         }
  6.  
  7.         $data = json_decode($url,true);
  8.         if(!$data){
  9.             echo"Шось не так з змінною data!!!";
  10.         }
  11.  
  12.         if($data['error']['error_code']){echo "Ошибка <b>".$data['error']['error_code']."</b>";}
  13.    
  14.         echo"<p>".$data['response']['text']."</p>";
  15.         ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement