我正在尝试找到一种反转字符串的方法,我已经看到了替代方案,但我想以这种方式在框外思考而不使用其他任何人的代码作为替代方案,下面的代码反转了字符串,但我不断得到这个错误:
注意:未定义的偏移量:第 15 行 C:\wamp\www\test\index.php 中的 25
25 是正在减量的字符串的长度。
//error_reporting(NULL);
$string = trim("This is a reversed string");
//find length of string including whitespace
$len =strlen($string);
//slipt sting into an array
$stringExp = str_split($string);
//deincriment string and echo out in reverse
for ($i = $len; $i >=0;$i--)
{
echo $stringExp[$i];
}
提前致谢