Assuming that your PHP configuration is set to the Quebec time, you can convert it to France's timezone by doing the following:
$date = new DateTime('7:10pm', new DateTimeZone('Europe/Paris'));
echo $date->format('Y-m-d H:i:sP');
Or, if your server is not set to the Quebec timezone you can:
$date = new DateTime('7:10pm', new DateTimeZone('America/Montreal'));
$date->setTimezone(new DateTimeZone('Europe/Paris'));
echo $date->format('Y-m-d H:i:sP');
which returns
2013-06-14 01:10:00+02:00
You can read more about PHP and timezones here: http://www.php.net/manual/en/datetime.settimezone.php
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…