-3

我正在尝试根据特定字符获取字符串的最后一个元素,即

$a='-test-hello';

输出应该是hello.

现在我想根据字符提取 hello -。我尝试strstr在 PHP 中使用函数。

但它没有用。如果有人可以分享如何实现这一点的任何想法,将不胜感激。

4

1 回答 1

5

试试这个:

$a = '-test-hello';
$p = explode('-', $a);
echo end($p);
于 2013-03-12T14:04:28.243 回答