function box ($options = array('x' => 0, 'y' => 0, 'width' => 100, 'height' => 100)) {
...
if (!isset($options['width'])) {
$options['width'] = 100;
}
....
}
box();
box(array('x' => 50, 'y' => 25));
box(array('x' => 50, 'y' => 25, 'height' => 414));