Comment obtenir l'URL en utilisant smarty (similaire à window.location
en JavaScript)?
J'ai fait ça
{$smarty.server.PHP_SELF}
mais ça ne marche pas.
Vous pouvez utiliser cela aussi.
{$smarty.server.HTTP_Host}{$smarty.server.REQUEST_URI}
C'est le code du contrôleur:
<?php
require_once('libs/Smarty.class.php');
$smarty = new Smarty();
if (isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] == "on") {
$pro = 'https';
} else {
$pro = 'http';
}
$port = ($_SERVER["SERVER_PORT"] == "80") ? "" : (":".$_SERVER["SERVER_PORT"]);
$current_url = $pro."://".$_SERVER['SERVER_NAME'].$port.$_SERVER['REQUEST_URI'];
$smarty->assign("current_url",$current_url);
$smarty->display('index.tpl');
?>
Vous pouvez afficher la variable dans le fichier modèle index.tpl:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Title</title>
</head>
<body>
{$current_url}
</body>
</html>
Voir ce qui est disponible avec ceci:
{$smarty.server|@var_dump}
Quelques exemples d'url https://some.example.com/some/path?param=1:
{$smarty.server.SCRIPT_URI}
https://some.example.com/some/path
{$smarty.server.SERVER_NAME}
some.example.com
{$smarty.server.SCRIPT_URL}
/ un/chemin