Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have one problem regarding CURL. I am trying send CURL request to http://whatismyipaddress.com

so.. is there any way to get curl response in array ? because right now it display the HTML Page but i want the response in array.

here is my code...

$ipAdd = '121.101.152.170';
$ch = curl_init("http://whatismyipaddress.com/ip/".$ipAdd);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION  ,1);
curl_setopt($ch, CURLOPT_HEADER,0);  
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$output = curl_exec($ch);      
curl_close($ch);
echo $output;

So.. currently i am getting the detail HTML page but i want the out put as array or XML.

share|improve this question
What do you want in this array or xml? Currently, a split on "\n" can help you. – Brice Favre Jun 12 '10 at 8:14
2  
As noted by Col. Shrapnel, this is against the WhatIsMyIPAddress.com terms of use unless you have prior written permission. – Michael Myers Nov 27 '10 at 23:31

1 Answer

The "easiest" path is going to be to find the surrounding text & extract based on that.

If you're willing to step your dedication to this up, you can use something like http://simplehtmldom.sourceforge.net/ & go from there.

edit: actually you can use this (it is built into php5) - http://php.net/manual/en/book.dom.php more specifically, this - http://www.php.net/manual/en/domdocument.loadhtml.php

share|improve this answer
3  
why was I downvoted? – Auston Jun 12 '10 at 9:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.