在X符号后选择字符串上的文本

时间:2013-12-29 16:54:12

标签: php

我有这个字符串

$string = "Social\Notify\Models\User";

我怎么能告诉php如何选择它的第四段?在这种情况下只是单词User

1 个答案:

答案 0 :(得分:2)

这样的事情可以吗?

$str='Social\Notify\Models\User';
echo explode('\\',$str)[3]; //"prints" User