如何在 Joomla 中对 url 参数进行编码
我正在使用 Joomla 组件 问题是:
我有一个像这样的 URL
http://localhost/Joomla_16/index.php/component/mycomponent_name/?view=mycomponent_view&cre=15
,我想对 &cre=15 的值进行编码,
我该怎么做?
提前致谢。
I am working with Joomla component
Problem is:
I have an URL like this
http://localhost/Joomla_16/index.php/component/mycomponent_name/?view=mycomponent_view&cre=15
I want to encode the value of &cre=15
How can I do that?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题解决了,
很简单。使用
base64_encode
。傻我!Problem solved
It is easy. Using
base64_encode
. silly me!