How do assemble (using Zend Routes) the full url with schema, domain and port, not just a root-based path?

Sample use case: we need to specify full url in the emails sent to the clients.

AFAIK there is no any built-in solution but what is a best practice in this case and/or what do you specifically use in such cases?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Use a combination of ServerUrl and Url view helpers, eg

<a href="<?php echo $this->serverUrl($this->url(array(
    'url' => 'params'), 'route', $reset, $encode)) ?>">My Link</a>
link|improve this answer
1  
Oh, haven't seen this helper ever, thanks. – zerkms Nov 11 '11 at 9:00
@zerkms Doco on all the helpers is scarce. Sometimes it's good to have a browse through Zend/View/Helper and Zend/Controller/Action/Helper – Phil Nov 11 '11 at 9:48
yep. When you pointed me the first thing I've done is dived into the sources ;-) – zerkms Nov 11 '11 at 10:54
That helper is very helpful ! – Tom Nov 11 '11 at 13:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.