Reputation: 1937
is there a way to convert this into javascript?
<?php
$url = 'http://www.yourdomain.com/';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$output = curl_exec($ch);
curl_close($ch);
echo $output;
?>
Upvotes: 1
Views: 863
Reputation: 1584
You can't but you can:
Actually you can save the php code to, let's say, mycurl.php, in your server, then use AJAX (XMLHttpRequest
) to pass the url to mycurl.php and get back the response to your javascript function.
Upvotes: 0
Reputation: 798686
Not directly. You can use XMLHttpRequest
to download webpages, but there are cross-domain issues to be aware of.
Upvotes: 0
Reputation: 943569
Pure JavaScript? No.
JavaScript with a standard browser environment? Maybe. There is the XHR object (which includes the status
property, which will tell you if it was successful or not), but there is also the same origin policy.
Upvotes: 1