Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- require_once '/path/to/goutte.phar';
- use Goutte\Client;
- $client = new Client();
- $crawler = $client->request('GET', 'http://mongolbank.mn/dblistofficialdailyrate.aspx');
- $currency = "USD";
- $rates = array();
- $rates[$currency] = $crawler->filter('span#MainContent_lbl' + $currency)->text();
- print_r($rates);
Add Comment
Please, Sign In to add comment