Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. preg_match_all(
  2.     '/<a href="http:\/\/store.steampowered.com\/app\/(.*?)\/".*?<strike>(.*?)<\/strike>.*?<br>(.*?)<\/div>.*?<div class="col search_metascore">(.*?)<\/div>.*?<div class="col search_released">(.*?)<\/div>.*?<img src="(.*?)".*?<h4>(.*?)<\/h4>.*?<p>(.*?)<\/p>.*?<\/a>/s',
  3.     $html,
  4.     $specials, // will contain the specials
  5.     PREG_SET_ORDER // formats data into an array of specials   
  6. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement