Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
<?php
$url = "http://www.nbg.gov.ge/";
$ch = curl_init();
// вывод в переменную
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_URL, $url);
$result = curl_exec($ch);
// вырезаем таблицу
$table_start=strpos($result,'<table id="NBG_Master_cphMainZone_ctl06_tblCurr"');
$table_end=strpos($result,'</table>',$table_start);
$table=substr($result,$table_start,($table_end-$table_start));
// восстанавливаем пути к картинкам
$table=str_replace('src="Images','src="http://www.nbg.gov.ge/Images',$table);
echo $table;
<?php
// чтение файла
$result=file_get_contents("http://www.nbg.gov.ge/");
// вырезаем таблицу
$table_start=strpos($result,'<table id="NBG_Master_cphMainZone_ctl06_tblCurr"');
$table_end=strpos($result,'</table>',$table_start);
$table=substr($result,$table_start,($table_end-$table_start));
// восстанавливаем пути к картинкам
$table=str_replace('src="Images','src="http://www.nbg.gov.ge/Images',$table);
echo $table;
<?php
$file = file_get_contents('http://rustavi2.com/news/includes/get_rates.php');
$array = explode( "&", $file);
$current = array();
foreach ( $array as $value )
{
if( $value != "" )
{
$var = explode('=', $value);
$current[$var[0]] = $var[1];
}
}
?>