如何更改PHP日期格式

zod*_*zod 1 php

用户从jQuery datepicker中选择像2010年9月22日那样的约会.

有没有PHP函数将该日期转换为22/09/2010?可以使用strtottime或mktime吗?

GSt*_*Sto 6

$newTime = date('d/M/Y',strtotime($oldTime));
Run Code Online (Sandbox Code Playgroud)

其中$ oldTime是日期选择器的值.