php实现2个数组输出有关问题

WBOY
Release: 2016-06-13 12:12:04
Original
1102 people have browsed it

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 />}
Copy after login
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