web-dev-qa-db-ja.com

smartyを使用して現在のURLを取得する方法

URLwindow.locationに似たSmartyを使用してJavaScriptを取得する方法

これは私がしました

{$smarty.server.PHP_SELF} 

しかし、それは機能していません。

36
user1187

これも使用できます。

{$smarty.server.HTTP_Host}{$smarty.server.REQUEST_URI}
114
sertaconay

これはコントローラーコードです:

<?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');

?>

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>
4
senthilbp

これで利用可能なものを参照してください。

{$smarty.server|@var_dump}

Urlhttps://some.example.com/some/path?param=1の2つの例:

{$smarty.server.SCRIPT_URI}

https://some.example.com/some/path

{$smarty.server.SERVER_NAME}

some.example.com

{$smarty.server.SCRIPT_URL}

/ some/path

2
Andrew