Call a function with multiple default value in PHP

How to call a function with multiple default value in PHP ?

I have a function like below

public function get( $action = 'find', $query = 'top' ) {
      //more code
}

What will happen if I call above function like below (with one value) ?

get('map') {
      //more code
}