Heim  >  Artikel  >  Backend-Entwicklung  >  PHP组指针赋值有关问题

PHP组指针赋值有关问题

WBOY
WBOYOriginal
2016-06-13 11:58:271047Durchsuche

PHP组指针赋值问题

本帖最后由 pkkgu 于 2014-05-30 09:18:25 编辑
<br />$arr=array();<br />$arr['imagePath']="";<br />$arr['Size1']="";<br />$arr['imageaPath']="";<br />$arr['image2Path']="";<br />$arr['Size33']="";<br />$arr['image5Path']="";<br />$arr['Size55']="";<br />$arr['imagebbPath']="";<br />$arr['imageccPath']="";<br />$arr['Size555']="";<br />$arr['imageqqPath']="";<br />$arr['image99Path']="";<br />$arr['imageeePath']="";<br />$arr['imagepPath']="";<br />$arr['Size66']="";<br /><br /><br />$url='/';<br />$arr['imagePath']=$url;<br />$arr['imageaPath']=$url;<br />$arr['image2Path']=$url;<br />$arr['image5Path']=$url;<br />$arr['imagebbPath']=$url;<br />$arr['imageccPath']=$url;<br />$arr['imageqqPath']=$url;<br />$arr['image99Path']=$url;<br />$arr['imageeePath']=$url;<br />$arr['imagepPath']=$url;<br />

------解决方案--------------------
这有什么“怪”呢?
看上去也还算清晰明了

foreach($ar as $k=?&$v) if(substr($k, -4) == 'Path') $v = $url;

------解决方案--------------------
<br /><?php<br />$arr=array();<br />$arr['imagePath']="";<br />$arr['Size1']="";<br />$arr['imageaPath']="";<br />$arr['image2Path']="";<br />$arr['Size33']="";<br />$arr['image5Path']="";<br />$arr['Size55']="";<br />$arr['imagebbPath']="";<br />$arr['imageccPath']="";<br />$arr['Size555']="";<br />$arr['imageqqPath']="";<br />$arr['image99Path']="";<br />$arr['imageeePath']="";<br />$arr['imagepPath']="";<br />$arr['Size66']="";<br /><br />$url = '/';<br /><br />foreach($arr as $key=>$val){<br />    if(substr($key,0,5)=='image'){<br />        $arr[$key] = $url;<br />    }<br />}<br /><br />print_r($arr);<br /><br />?><br />
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn