Advertisement
bomb

Untitled

Nov 20th, 2024
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. <?php
  2.  
  3. $url = "https://www.behance.net/pugbomb/projects";
  4.  
  5. $response = wp_remote_get($url, [
  6.     'sslverify' => false,
  7.     'timeout' => 60,
  8.     'headers' => [
  9.         'X-Requested-With' => 'XMLHttpRequest',
  10.     ],
  11. ]);
  12.  
  13. $xml = wp_remote_retrieve_body($response);
  14. $result = json_decode($xml, true);
  15. $behance_shots = $result['profile']['activeSection']['work']['projects'];
  16.  
  17. print_r($behance_shots);
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement