fork download
  1. <?php
  2.  
  3. $curl = curl_init();
  4.  
  5. CURLOPT_URL => 'https://g...content-available-to-author-only...v.vn/lich-phat-song/?ngay=2025-08-01&kenh=1',
  6. CURLOPT_RETURNTRANSFER => true,
  7. CURLOPT_ENCODING => '',
  8. CURLOPT_MAXREDIRS => 10,
  9. CURLOPT_TIMEOUT => 0,
  10. CURLOPT_FOLLOWLOCATION => true,
  11. CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  12. CURLOPT_CUSTOMREQUEST => 'GET',
  13. CURLOPT_HTTPHEADER => array(
  14. 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,/;q=0.8,application/signed-exchange;v=b3;q=0.7',
  15. 'Accept-Language: en-GB,en-US;q=0.9,en;q=0.8',
  16. 'Cache-Control: no-cache',
  17. 'Connection: keep-alive',
  18. 'Pragma: no-cache',
  19. 'Sec-Fetch-Dest: document',
  20. 'Sec-Fetch-Mode: navigate',
  21. 'Sec-Fetch-Site: none',
  22. 'Sec-Fetch-User: ?1',
  23. 'Upgrade-Insecure-Requests: 1',
  24. 'User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36',
  25. 'sec-ch-ua: "Chromium";v="136", "Google Chrome";v="136", "Not.A/Brand";v="99"',
  26. 'sec-ch-ua-mobile: ?0',
  27. 'sec-ch-ua-platform: "Linux"'
  28. ),
  29. ));
  30.  
  31. $response = curl_exec($curl);
  32.  
  33. curl_close($curl);
  34. echo $response;
  35.  
Success #stdin #stdout 0.04s 26480KB
stdin
Standard input is empty
stdout
Standard output is empty