$fruit['orange']="橘子";
print_r($fruit);
//这样过不了呢?
print_r($fruit);
//这样过不了呢?
2014-12-18
<?php
$fruit=array('苹果','香蕉','菠萝');
foreach($fruit as $k=>$v){
echo '<br>第'.$k.'值是:'.$v;
}
?>
//这样写无法通过么?为什么?
$fruit=array('苹果','香蕉','菠萝');
foreach($fruit as $k=>$v){
echo '<br>第'.$k.'值是:'.$v;
}
?>
//这样写无法通过么?为什么?
2014-12-18