▼Example-array6-1.php
<meta http-equiv=“Content-Type” content=“text/html;charset=UTF-8” />
<title>PHPテスト</title>
</head>
<body>
<p>PHPのテストです。</p>
<pre>
<?php
$maker = array(‘富士通’, ‘NEC’, ‘Sony’, ‘Sharp’);
$type = array(‘Note’, ‘Desktop’);
$pc = array($maker, $type);
print_r($pc);
print ‘$pc[0][1] = ‘.$pc[0][1].‘<br />’;
print ‘$pc[1][0] = ‘.$pc[1][0];
?>
</pre>
</body>
</html>