Skip to content

Instantly share code, notes, and snippets.

@daohoangson
Last active December 22, 2015 21:39
Show Gist options
  • Save daohoangson/6534707 to your computer and use it in GitHub Desktop.
Save daohoangson/6534707 to your computer and use it in GitHub Desktop.
<?php
$html = file_get_contents('http://itunes.apple.com/vn/app/zalo-nhan-gui-yeu-thuong/id579523206?mt=8&ign-mpt=uo%3D2');
if (!empty($html) AND preg_match('#<span class="label">Version: </span>([0-9\.]+)</li>#', $html, $matches))
{
$version = $matches[1];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment