php strtotime 转 1970

php strtotime turn 1970

我有一个这样的约会:

11 Jun 2017 

我想格式化成

11.06.2017 

我试试strtotime但是转1970

$arrival = date("d.m.Y", strtotime($_POST['arrival']));
$departure = date("d.m.Y", strtotime($_POST['departure']));

我正在尝试 php 5 和 7 版本。日期是动态语言

if page english Jun if page turkish Haz like this

strtotimedate 一起使用对于给定的字符串

似乎工作正常
$str='11 Jun 2017';
echo date('d.m.Y',strtotime( $str ) );

产出

11.06.2017