There is times that I am wanting to convert a time string and have it output in the sites timezone. This is a simple function that utilizes the DateTime class and implements the wp_timezone for its output.
function wp_strtotime($str) {
$datetime = new DateTime($str, wp_timezone());
return $datetime->format('U');
}