我通过使用 iframe 在 joomla 中使用 codeigniter。如果管理员或用户,某些页面我需要获取用户组所以我找到了一种通过使用带有以下代码的 url 将值发送到 iframe 的方法:
<?php
//add user id
$user_id = JFactory::getUser()->id;
?>
<iframe <?php echo $this->wrapper->load; ?>
id="blockrandom"
name="iframe"
src="<?php echo $this->escape($this->wrapper->url) . "?user=" . $user_id; ?>"
问题是用户的类型将出现在 url 中,那么他们有什么方法可以加密 url 并在另一个页面中解密它?