I am thinking you can try using file_get_contents and parse the information you need from the content of that page.
$url = "http://in.finance.yahoo.com/q?s=IFCI.NS&m=NS ";
$content = file_get_contents($url);
Then you can do anything from the $content string.