Download tại SlideShare
Trang chính của tác giả: http://hasin.wordpress.com/2008/02/09/hacking-slidesharenet-using-php/
Tạm thời post cái php tại đây:
<?php
$slideshowUrl="http://www.slideshare.net/coogle/ajax-and-php";
$slideshowPageContent = file_get_contents($slideshowUrl);
$pattern = "~doc=([\w-]+)~";
preg_match($pattern,$slideshowPageContent,$matches);
$xmlurl = "http://s3.amazonaws.com/slideshare/{$matches[1]}.xml";
$sxml = simplexml_load_file($xmlurl);
foreach ($sxml->Slide as $slide)
echo $slide['Src']."<br />";
?>
Popularity: 16% [?]
No comments yet.