Admin_Apple_Index_Page::download_json PHP Метод

download_json() приватный Метод

Downloads the JSON file for troubleshooting purposes.
private download_json ( string $json, integer $id )
$json string
$id integer
    private function download_json($json, $id)
    {
        header('Content-Description: File Transfer');
        header('Content-Type: application/json');
        header('Content-Disposition: attachment; filename="article-' . absint($id) . '.json"');
        echo $json;
        die;
    }