我现在有个页面searchFangxiang.php定义了一个二维数组:
<?$fangxiang=array('fid101'=>array("fid"=>"101","Name"=>"自动化研究所","professor"=>"张教授"),
'fid102'=>array("fid"=>"102","Name"=>"实验室","professor"=>"李教授"),
'fid103'=>array("fid"=>"103","Name"=>"科学研究所","professor"=>"王教授")););
?>
然后在我的应用页面引用了这个二维数组的页面
<div class="news_title_01_box">
<?include 'searchFangxiang.php';
echo "<span class='news_title_01'></span>";
?>
</div>
现在应用页面有个id 我如何遍历这个二维数组,找到二维数组中fid与页面id相同的那一组,然后在<span>标签中输出这一组的信息
------解决思路----------------------
按你的数据组织方式,不需要遍历
只需 echo $fangxiang["fid$id"]['Name']; 即可
------解决思路----------------------
搜索的。
<?php
$fangxiang = array(
'fid101' => array("fid"=>"101","Name"=>"自动化研究所","professor"=>"张教授"),
'fid102' => array("fid"=>"102","Name"=>"实验室","professor"=>"李教授"),
'fid103' => array("fid"=>"103","Name"=>"科学研究所","professor"=>"王教授"),
);
?>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<script type="text/javascript">
var fangxiang = <?php echo json_encode($fangxiang); ?>;
function search(){
var key = document.getElementById("key").value;
var type = document.getElementById("type").value;
if(key==''){
alert('请输入要搜寻的关键字');
return false;
}
var result = [];
for(var row in fangxiang){
var tmp = fangxiang[row][type];
if(tmp.indexOf(key)!=-1){
result.push(row);
}
}
var response = '';
if(result.length>0){
for(var i=0,len=result.length; i<len; i++){
response += fangxiang[result[i]].fid + ' ' + fangxiang[result[i]].Name + ' ' + fangxiang[result[i]].professor + ' <br>';
}
}
document.getElementById('result').innerHTML = response;
}
</script>
<p>search key:<input type="text" id="key"></p>
<p>type:<select id="type">
<option value="Name">Name</option>
<option value="professor">professor</option>
</select>
</p>
<p><input type="button" value="search" onclick="search()"></p>
<div id="result"></div>