Ответ PHP 5.3 был отличным
DateTime::createFromFormat('j/n/Y','30/7/2010')->getTimestamp();
Вот решение <5.3.0 </p>
$timestamp = getUKTimestamp('30/7/2010');
function getUKTimestamp($sDate) {
list($day, $month, $year) = explode('/', $sDate);
return strtotime("$month/$day/$year");
}