Merhaba ben aşağıdaki gibi bir test kodu yazdık.
<?php
$url = 'http://localhost/events/result/cn_index.php?login';
print_r(parse_url($url));
echo parse_url($url, PHP_URL_PATH);
?>
Çıktı
Array ( [scheme] => http [host] => localhost [path] => /events/result/cn_index.php [query] => login ) /events/result/cn_index.php
Şimdi aşağıdaki satırı eklenen
echo array[query]; // I want to echo 'login', but failed.
'Giriş' değerini almak nasıl?