这是我到目前为止的代码:
$url = substr($url,0,10);
这会产生一个这样的 URL:
domain.com/my-web-pag.php
我想做的是如何找出将日期添加到 URL 中的方法
date('m-d-y');
这样最终的 url 看起来像这样:
domain.com/10-03-12-my-web-pag.php
有人介意帮我把代码拼凑起来吗?我非常感谢任何愿意提供帮助的人。谢谢!
$url = date('m-d-y-').substr($url,0,10);
这将显示类似 site.com/10-29-12-my-web-pag.php
你可以这样做:
$str = 'domain.com/my-web-pag.php';
$arr = explode('/',$str);
$url = $arr[0] . '/' . date('m-d-y') . '-' . $arr[1];
echo $url; // outputs domain.com/10-03-12-my-web-pag.php