連想配列

<?php
$price = array(“apple” => “100円”, “orange” => “300円”, “grape” => “800円”);
echo $price[“apple”];
?>