我正在使用Drupal 7.我正面临一个问题。我想得到完整的网址,但我的网址不干净。我在这里分享我的网址。
localhost/samplesite.com/sample-page.html?iniref=GOAI147600
我正在使用的功能
request_uri(),
current_path(),
drupal_get_destination(),
url($_GET['q'], array('absolute' => TRUE),
$_SERVER();
我得到的输出
localhost/samplesite.com/sample-page.html
但没有运气。
答案 0 :(得分:0)
我没有使用Drupal,但您可以使用$ _SERVER进行网址。
$link = 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];