PHP RDF fetching code

OK, here’s some fun for you...
(Excuse me if it has been discussed before, and just point me at it :-) )


Having struggled through the php manual for cURL, I have come up with the following draft for getting an RDF document, given a URI.

                        $ch = curl_init();
                        curl_setopt($ch, CURLOPT_URL, $_REQUEST['uri']);
                        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
                        curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
                        curl_setopt($ch, CURLOPT_HTTPHEADER, array("Accept: application/rdf+xml, text/n3, text/rdf+n3, text/turtle, application/x-turtle, application/turtle, text/plain"));
                        $data = curl_exec($ch);
                        $info = curl_getinfo($ch);

                        if ($data === FALSE || $info['http_code'] != 200) {

What does anyone think?
I’m sure there are a bunch of improvements/corrections.

As a (hopefully) separate issue, the MIME types will probably generate some discussion, but it is the PHP I am primarily asking about at the moment.

Best
Hugh

Received on Monday, 25 January 2010 18:10:53 UTC