在标题中显示URL参数

时间:2019-04-15 22:53:59

标签: php wordpress url split referer

我的URL ABVILE %>% mutate(Exams = ifelse(Year == "2009-12-01", 1709.67, ifelse(Year == "2010-01-01", 999.999, NA))) %>% data.frame case_whenwww.exemple.com/?cl=client1,我想将URL参数放在网站的正文中,并显示如下参数:“ client1”,“ client2” ,“ client3”

如何将其放在用HTML制作的网站标题中?

1 个答案:

答案 0 :(得分:0)

您需要像这样使用预定义的PHP变量$_GET

<?php // save the URL parameter into a variable $client = htmlspecialchars($_GET['cl']); // print the variable contents on the page echo 'Hello ' . $client . '!'; ?>

它“获取” URL参数并将其保存在关联数组中。

所以$client = $_GET["cl"];会给您您想要的东西。

将其传递给htmlspecialchars会将特殊字符转换为HTML实体,当您从URL获取内容时应始终这样做。

参考: https://www.php.net/manual/en/reserved.variables.get.php