动漫人物
以下是如何输出数组的全部内容,而无需指定数组的键<!DOCTYPE html><html><head><!-- Your stylesheet here --></head><body><h2>My cool table</h2><table><tr> <th>Items</th> <th>Stocks</th><tr><?php// Create the array$myArray=array('TV' => '1', 'Speaker' => '34', 'Radio' => '11');// Output all of the items in the tableforeach($myArray as $item => $stock){echo "<tr><td>{$item}</td><td>{$stock}</td></tr>";}?></table></body></html>输出应类似于以下内容:<!DOCTYPE html><html><head><!-- Your stylesheet here --></head><body><h2>My cool table</h2><table><tr> <th>Items</th> <th>Stocks</th><tr><tr><td>TV</td><td>1</td></tr><tr><td>Speaker</td><td>34</td></tr><tr><td>Radio</td><td>11</td></tr></table></body></html>