使用Php获取URL的最后一部分

时间:2014-09-01 14:21:14

标签: php string

使用,PHP我想得到url的最后一部分(即最后一次斜杠之后的部分)。

所以,

来自:

http://scta.info/resource/person/Aristotle

我想得到

Aristotle

1 个答案:

答案 0 :(得分:1)

$link = 'http://scta.info/resource/person/Aristotle';
$myarray = explode('/',$link);
echo end($myarray);