Web Features Learning Mode

Consider the following PHP script:

<?php
      header("Content-type:application/pdf");
      header("Content-Disposition:attachment;filename='2.pdf'");
      readfile("1.pdf");
 ?>

What will be the default name of the downloaded pdf?