Using Curl except file_get_contents - preCharge Forums
It shows that you are unregistered. Please register with us by clicking Here
preCharge Forums


Nav Green LeftNav Right
preCharge Forums > Website Design & Development > Programming > PHP » Using Curl except file_get_contents


Reply
Tcat Right
 
LinkBack Thread Tools Display Modes Tcat Right
Old 02-25-2007   #1 (permalink)
qing
Member
 
Join Date: Feb 2007
Posts: 44
Default Using Curl except file_get_contents

I have a script. It's using file_get_contents.
I heard that curl is more efficient from file_get_contents
what is the equivalent code for curl?
$data = file_get_contents("http://www.xxx.com");

I want this with curl .
How can i do it ?
qing is offline   Reply With Quote


Old 04-07-2008   #2 (permalink)
vn4000
Junior Member
 
Join Date: Apr 2008
Posts: 12
Default Re: Using Curl except file_get_contents

You need initialize a new curl resource by:
Quote:
$ch = curl_init();
Then set the url to fetch:
Quote:
curl_setopt($ch, CURLOPT_URL, 'http://www.xxx.com');
If you want to return the value instead of printing the response to browser:
Quote:
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
and:
Quote:
$content = curl_exec($ch);
Please condider:
PHP: CURL - Manual
Good luck
vn4000 is offline   Reply With Quote

Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


footer left
All times are GMT. The time now is 05:54 PM.

DISCLAIMER: preCharge Risk Management is not responsible for any opinions, advice or comments expressed on the preCharge Community Forums.
preCharge® is a registered trademark of preCharge Risk Management | chargeback protection | Merchant Account Blog

Powered by vBulletin
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0 RC6

Car Insurance | Credit Cards | Car Accident Attorney Los Angeles | Debt | Remortgages

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49