我需要从不同的网址获取某个人的姓名。
示例:
网址可能与http://www.example.com/John-Smith/
不同到http://www.example.com/some-other-info/hellen-leroy/
至www.example.com/some/other/info/nick-waller /
但它不仅限于这些变体(只有姓名保留在firstname-lastname格式)
我需要将此人的姓名放在如下变量中:
$ personName =“名字姓氏”;
我该怎么做? 附: :它可以使用纯PHP或一些Wordpress函数来完成。
答案 0 :(得分:1)
$temp = explode('/', $_SERVER['REQUEST_URI']);
$temp = explode('-', $temp[count($temp)-1];
$firstName = $temp[0];
$lastName = $temp[1];
希望有所帮助:)