Skip to content

Instantly share code, notes, and snippets.

@soiqualang
Created March 18, 2022 14:00
Show Gist options
  • Save soiqualang/6fa6b0987f0034fd0a97fb7e78d3ed83 to your computer and use it in GitHub Desktop.
Save soiqualang/6fa6b0987f0034fd0a97fb7e78d3ed83 to your computer and use it in GitHub Desktop.
File Proxy đơn giản
<?php
$ch = curl_init($_GET['url']);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$output = curl_exec($ch);
curl_close($ch);
echo $output;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment