Guest User

Untitled

a guest
Jul 19th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <?php
  2. $url=file_get_contents("https://en.wikipedia.org/w/api.php?action=query&titles=Haw%20Par%20Villa&prop=revisions&rvprop=content&format=json");
  3. $decode=json_decode($url,true);
  4. $slice=array_slice($decode, 1);
  5. $content=array_values($slice['query']['pages'])[0]['revisions'][0]['*'];
  6. echo $content;
  7. ?>
Add Comment
Please, Sign In to add comment