include 'simple_html_dom.php';
$html = file_get_html( 'https://www.alfabank.by/currencys/beznal/' );
foreach($html->find('.foldable-block .foldable-block_body .currency-table', 4) as $elm) {
$items[] = $elm->plaintext;
}
$new_arr = array_diff($items, array(''));
$first = current($new_arr);
echo $first;