当前位置: 代码迷 >> PHP >> 字符串偏移量未设立
  详细解决方案

字符串偏移量未设立

热度:46   发布时间:2016-04-29 00:18:25.0
字符串偏移量未设置。
PHP code
$str1 = "no job no address";     function Mystrrev($str1){        $newstr = "";        $len = strlen($str1);        for($i = $len; $i >= 0; $i--) {            $newstr .= $str1{$i};        }        return $newstr;    }    echo Mystrrev($str1);    

警告:Notice: Uninitialized string offset
请问这个偏移量怎么设置。

------解决方案--------------------
for($i = $len-1; $i >= 0; $i--)
  相关解决方案