我是PHP新手,无法找到从URL params转换两个字符串的最佳方法。
我想转换: “2010年8月”到---> “2010-08 - %”
还有: “2010”到---> “2010 - % - %”
提前谢谢!
答案 0 :(得分:4)
您可以将strtotime
功能与date
:
echo date('Y-m', strtotime('August 2010'));
只需将format参数调整为date
函数,即可获得所需格式的结果。您可能希望在转换日期格式后附加%
部分。
答案 1 :(得分:2)
您可以通过学习使用以下两个功能来完成这些功能
strtotime http://php.net/manual/en/function.strtotime.php
日期http://php.net/manual/en/function.date.php