¡Muchas gracias! :)
Ya está resuelto, he usado esto:
Cita: function convert_date($fecha) {
$var = explode('/', $fecha);
return $var[2] . '-' . $var[1] . '-' . $var[0];
}
$calcular_precio = strtotime(convert_date($_POST['date_re']) . ' ' . $_POST['hour_re'] . ':00') - strtotime(convert_date($_POST['date_de']) . ' ' . $_POST['hour_de'] . ':00');
$calcular_precio = intval($calcular_precio/60/60/24);
$calcular_precio = abs($calcular_precio * $vehicle['price']);