php foreach 执行rename

原创
2016-06-23 14:16:59 589浏览

郁闷的问题,rename在foreach中不执行,
当rename($kb,$newfile.$dimg);在foreach外面的时候是执行的,
但是到了foreach里面就不行了,哪位大神讲解下?到底是咋了。怎么解决!

$hkt=$db->get_one("select fid,attachmentdomain,attachmentdir from news_sort where fid='$fid'");	$postdb[content]=str_replace("http://www_mydomain.com","../../".$attachmentdir,$postdb[content]);	$newfile="../../upload_files/".$hkt[attachmentdir]."//m.sbmmt.com/m/";	preg_match_all("//i",$postdb[content],$imglist);	foreach($imglist[1] as $kb){		$kb=str_replace("\"","",$kb);		$dimg=explode("//m.sbmmt.com/m/",$kb);		$dimg=$dimg[count($dimg)-1];		$kbimg=$hkt[attachmentdomain]."//m.sbmmt.com/m/".$dimg;		$postdb[content]=str_replace($kb,$kbimg,$postdb[content]);		rename($kb,$newfile.$dimg);		unlink($kb);	}

回复讨论(解决方案)

循环中打印出来$kb,$newfile,$dimg等分别是什么。
要学会一步一步跟踪调试

均以测试了的!就是在foreach中不行。。 下面的unlink都执行了,就是rename不执行!

循环中打印出来$kb,$newfile,$dimg等分别是什么。
要学会一步一步跟踪调试
$kb=老的图片路径,“../../img/A.jpg”
$newfile=新储存路径,"../../newimg/"
$dimg=是图片的名称:"a.jpg"

搞定了! 呼呼 ! $newfile不是绝对路径所致!

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。