I want URL in controller method from the route.
$route = $this->url('my/route', array('id' => $myID), array(
'force_canonical' => true,
));
This will give me the route object but what I want is URL like
$link = "http://example.com/my/route/23"
in a variable as I have to send it to other action for display as text.