$str="2019/03/14"; $ptn='/(\d+)\/(\d+)\/(\d+)/'; // 其中的\/ 是转义的/ $rep="$3-$1-$2"; echo preg_replace($ptn, $rep, $str);
博客列表 >php 字符串交换位置
$str="2019/03/14"; $ptn='/(\d+)\/(\d+)\/(\d+)/'; // 其中的\/ 是转义的/ $rep="$3-$1-$2"; echo preg_replace($ptn, $rep, $str);