如获取第二个$str[1]或$str{1},不建议使用{},最好使用[]
测试如下
代码如下:
//获取字符最后一个字符
$str = 'PHPddt.com';
echo $str[strlen($str)-1]; //m
//修改第一个字符
$str = 'PHPddt.com';
$str[0] = 'a'; //ahpddt.com
//方括号中的数字超出范围将会产生空白。
$str = 'PHPddt.com';
$str[100] = 'y'; //PHPddt.com y
//如果是非整数类型被转换成整数
$str = 'PHPddt.com';
$str['a'] = 'y'; //PHPddt.com y
$str = 'PHPddt.com';
$str[-1] = 'y'; //负数会出错:Warning: Illegal string offset: -1
原文链接:https://www.f2er.com/php/24904.html$str = 'PHPddt.com';
echo $str[strlen($str)-1]; //m
//修改第一个字符
$str = 'PHPddt.com';
$str[0] = 'a'; //ahpddt.com
//方括号中的数字超出范围将会产生空白。
$str = 'PHPddt.com';
$str[100] = 'y'; //PHPddt.com y
//如果是非整数类型被转换成整数
$str = 'PHPddt.com';
$str['a'] = 'y'; //PHPddt.com y
$str = 'PHPddt.com';
$str[-1] = 'y'; //负数会出错:Warning: Illegal string offset: -1