Подскажите пожалуйста, что я упустил? Ругается и на строку с "$opts =" и на строку с "$file = file_get_contents" ((((( Код (Text): <?php class GetCurrency { private $opts; public $xmldata; private $context; // Create a stream $opts = array( 'http'=>array( 'method'=>"GET", 'header'=>"Accept-language: en\r\n" . "Cookie: foo=bar\r\n" ) ); $context = stream_context_create($opts); // Open the file using the HTTP headers set above $file = file_get_contents('http://www.cbr.ru/scripts/XML_daily.asp', false, $context); } ?>
Код (Text): <?php class GetCurrency { private $opts; public $xmldata; private $context; public function GetFile() { // Create a stream $opts = array( 'http' => array( 'method' => "GET", 'header' => "Accept-language: en\r\n" . "Cookie: foo=bar\r\n" ) ); $context = stream_context_create($opts); // Open the file using the HTTP headers set above $file = file_get_contents('http://www.cbr.ru/scripts/XML_daily.asp', false, $context); } } ?>