<?php
$str = 'C:\dir\file.php';
$tips = split('\\\\', $str);
print_r($tips);//Array ( [0] => C:\dir\file.php )
?>