Comment puis-je obtenir l'URL de base dans Kohana 3?URL de base dans Kohana 3
Existe-t-il une solution en PHP brut?
Comment puis-je obtenir l'URL de base dans Kohana 3?URL de base dans Kohana 3
Existe-t-il une solution en PHP brut?
En Kohana il est
echo url::base();
http://docs.kohanaphp.com/helpers/url
En PHP brut
echo "http://".$_SERVER['HTTP_HOST']."/NameOfApp";
Si vous êtes inquiet au sujet de nombreux url::base()
appels, vous pouvez le transformer en une constante .
define('PATH_BASE', url::base());
Pour Kohana 3, il est URL :: base().
De la doc:
// Absolute URL path with no host or protocol
echo URL::base();
// Absolute URL path with host, https protocol and index.php if set
echo URL::base('https', TRUE);
// Absolute URL path with host and protocol from $request
echo URL::base($request);
J'utilise cela, et il fonctionne.
echo URL::base();
or
echo URL::base(true);