As I explained in the section that you just read, the last hands-on example that I’m going to show you in this article will be aimed at demonstrating how to query the Yahoo! Image Search Service directly from inside a simple PHP 5 script. Logically, this procedure is nearly identical to the one discussed in the prior section. Its main difference rests on the URL where the web service in question has to be queried. But let me go straight to the point and show you how to use this helpful Yahoo! Service with PHP 5. Take a look at the following code sample: try{ // example using Yahoo! Image Search Web Service - search results are displayed in raw XML format $request='http://search.yahooapis.com/ImageSearchService/V1/ // trigger the http request if(!$results=file_get_contents($request)){ throw new Exception('Error requesting Yahoo! Web service'); } // display the results in XML format header('Content-type:text/xml;charset=iso-8859-1'); echo $results; } catch(Exception $e){ echo $e->getMessage(); exit(); } // displays the following /* <ResultSet xsi:schemaLocation="urn:yahoo:srchmi <Result> <Title>Madonna_vogue.jpg</Title> <Summary>Madonna_3.jpg 30-Apr-2005 14:34 23k Madonna_9.jpg 30- <Url>http://www.multinet.no/~jonarne/Hjemmesia/Favorittartister/ <ClickUrl>http://www.multinet.no/~jonarne/Hjemmesia/ <RefererUrl>http://www.multinet.no/~jonarne/Hjemmesia/ <FileSize>22835</FileSize> <FileFormat>jpeg</FileFormat> <Height>409</Height> <Width>299</Width> <Thumbnail> <Url>http://sp1.mm-a7.yimg.com/image/3729207548</Url> <Height>140</Height> <Width>102</Width> </Thumbnail> </Result> <Result> <Title>madonna_90563a.jpg</Title> <Summary>ANGRER: Madonna spiller gjerne pa sex for a provosere, men angrer pa boken Sex.- Jeg lurer stadig pa hva som motiverte meg til a lage den, sier hun om sin vagale bok, Sex , som vakte</Summary> <Url>http://pub.tv2.no/multimedia/TV2/archive/00090/ <ClickUrl>http://pub.tv2.no/multimedia/TV2/archive/00090/ <RefererUrl>http://pub.tv2.no/TV2/underholdning/kjendiser/ <FileSize>14540</FileSize> <FileFormat>jpeg</FileFormat> <Height>400</Height> <Width>200</Width> <Thumbnail> <Url>http://sp1.mm-a4.yimg.com/image/2804555704</Url> <Height>135</Height> <Width>67</Width> </Thumbnail> </Result> </ResultSet> <!-- ws05.search.scd.yahoo.com uncompressed/chunked Wed Oct 17 --> As demonstrated above, using the Yahoo! Image Search Service with PHP 5 requires practically the same steps that you learned when using other web services. In this case, the pertinent results are retrieved by using the same “file_get_contents()” PHP native function that you saw before, and are also displayed on the browser in raw XML format. Finally, taking into account that all of the code samples included in this tutorial might be the first ones that you learned concerning the implementation of the most common web services offered by Yahoo! with PHP 5, I suggest you to develop your own test examples to acquire a more solid background in this useful and interesting topic. Final thoughts That’s it for now. In this initial installment of the series, I showed you with some educational code samples how to query basically the four primary web search services provided by Yahoo! directly with PHP 5. As you saw earlier, in every case the corresponding search results were outputted in XML, but this is only momentary. I’m saying this because in the next tutorial of the series I’m going to teach you how to utilize all these Yahoo! APIs to work specifically with PHP, and display the results returned by a given search query in the form of serialized arrays. Now that you know what the upcoming part will be about, you won’t want to miss it!
blog comments powered by Disqus |
|
|
|
|
|
|
|