The following PHP code does exactly what I want to do. The problem is I need to re-create it in Perl and I've been playing around with the open()
and sysopen()
Perl functions but can't do it. Does anyone have any help or know of any links that might help? Thanks.
$URL = "http://example.com/api.php?arguments=values";
echo file_get_contents($URL);
You can make use of LWP:
use LWP::Simple;
$contents = get $URL or die;
print $contents;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With