This page shows the different formats strtotime() will work with. To convert to one of those (or a few other unlisted ones; experiment) you can just do some simple string manipulation. Your example:
$date = '23/01/2006';
$date = str_replace('/', '-', $date);
$timestamp = strtotime($date);