php实现2个数组输出问题
$units = explode(",",$row["units"]);
//输出结果:Array ( [0] => 盆 [1] => 大鹏 )
$brand = explode(",",$row["brand"]);
//输出结果:Array ( [0] => 45 [1] => 56 )
?>
怎么实现:
盆
大鹏
------解决思路----------------------
本帖最后由 xuzuning 于 2014-12-17 10:52:41 编辑
foreach($units as $k=>$v) {<br /> echo "<a href='?id={$brand[$k]}'>$v</a>";<br />}
Statement: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