document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. // Code Posted On www.dipaninside.blogspot.com
  2. // visit us and find more useful scripts & codes..
  3.  
  4.  function linkExtractor($html){
  5.  $linkArray = array();
  6.  if(preg_match_all(\'/<a\\s+.*?href=[\\"\\\']?([^\\"\\\' >]*)[\\"\\\']?[^>]*>(.*?)<\\/a>/i\',$html,$matches,PREG_SET_ORDER)){
  7.  
  8.  foreach($matches as $match){
  9.  array_push($linkArray,array($match[1],$match[2]));
  10.   }
  11.  }
  12.  return $linkArray; // print array values.
  13. }
');