<?php

  $windows = "F:\Program Files\SSH Communications Security\SSH Secure Shell\Output.map";
  
  /* str_replace(find, replace, string, count) */
  $unix    = str_replace("\\", "/", $windows);
    
  print_r(pathinfo($unix, PATHINFO_BASENAME));
  
?>  