Get next month first day

<?php
  $aTime = strtotime('first day of +1 month');
  $aDate = date("d/m/Y",$aTime); 
?>