我有带有获取 2 个参数 $link 和 $text 的 php 页面我想要获取 $link 参数以及其中的所有参数示例
test.php?link=www.google.com?test=test&test2=test2&text=testtext
我想获取链接 = 'www.google.com?test=test&test2=test2' 并获取文本 = testtext
我使用这个 php 脚本
<?php
$text = $_GET['text'];
$link = $_GET['link'];
echo $text;
echo $link;
?>
output
testtext
www.google.com?test=test