Guest User

Untitled

a guest
Jul 18th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?php
  2.  
  3. $html = <<<HTML
  4. <a href="?afolder=albums&anketaId=353202891&albumId=353202892&a=album_collapse&c=N" class="albumName">
  5. HTML;
  6.  
  7. preg_match('~<a\s+href="([^\"]+)"\s+class="albumName"~', $html, $m);
  8. parse_str(parse_url($m[1], PHP_URL_QUERY), $params);
  9.  
  10. print_r($params);
  11.  
  12. ?>
Add Comment
Please, Sign In to add comment