Home > Backend Development > PHP Tutorial > 这是一种什么情况!该怎么处理

这是一种什么情况!该怎么处理

WBOY
Release: 2016-06-13 13:00:23
Original
840 people have browsed it

这是一种什么情况!!!
比如说:

$str="abcadef";
$strone=$str[0];
for($i=0;$i if($strone==$str[$i]){
$str[$i]="";
}
}
var_dump($str);


显示出:

string(7) "bcdef";

请问一下,为什么这个字符串还是7个长度,有没有什么办法,让他变成5个的长度,



------解决方案--------------------

$str="abcadef";<br />
$strone=$str[0];<br />
$r = '';<br />
for($i=0;$i<strlen($str);$i++){<br />
  if($strone != $str[$i]){<br />
    $r .= $str[$i];<br />
  }<br />
}<br />
$str = $r;<br />
var_dump($str);
Copy after login

------解决方案--------------------
解决方法楼上各位都说了,但为了避免你重蹈覆辙,说说理论的事――

程序看上去是“合理”的,但实际上是错误的,关键在于php核心存储变量的方式

php对于一个字符串变量赋值后是记录了长度的,要改变这个长度需要重新赋值
$str[x]='' 这种形式并不能对字符串变量重新赋值,因为''属于空字节,只能用于空字符串
替换一个非空字节则是可行的


具体请参考  深入理解php内核

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template