display page template using functions.php

PHP
function define_current_theme_file( $template ) {
    $GLOBALS['current_theme_template'] = basename($template);

    return $template;
}
add_action('template_include', 'define_current_theme_file', 1000);

# Echo result in header.php
echo $GLOBALS['current_theme_template'];
Source

Also in PHP: