<?php
$arr = array("a" => "b", "c" => "d",);
echo "size: ", count($arr), "\n";
echo "c => ", $arr["c"], "\n";
?>