<?php
$str = "09-3月-02";
$search = "/[^\d]+/";
$replace = " ";
echo preg_replace($search,$replace,$str);
?>