Php字符串获取索引字母

时间:2017-02-14 14:11:44

标签: php

我想在字符串中得到某个'索引'的字母。我知道有strpos功能,但这与我想要的相反。

例如:

$String = 'Hello';
echo getIndexOf(4, $String);

它将返回'o';

我有什么方法可以做到这一点?提前谢谢!

1 个答案:

答案 0 :(得分:4)

你可以简单地做

$String[4] 

或使用substr函数:

substr($String, 4, 1).