從網址獲取網址我有拿到2個參數$鏈接和$文字 我想獲得的所有參數$鏈接參數裏面例如PHP通過get方法
test.php的?鏈接= www.google PHP頁面.COM?測試=測試&測試2 = test2的&文本= testtext
我想獲得鏈接= 'www.google.com?test=test &測試2 = test2的' 和獲取文本= testtext
我使用這個PHP腳本
<?php
$text = $_GET['text'];
$link = $_GET['link'];
echo $text;
echo $link;
?>
output
testtext
www.google.com?test=test
你的問題是什麼? – LonelyWebCrawler