- ベストアンサー
「/」以降の取得について
http://localhost/php/param.php/test 上の様なURL上から、「/」以降の文字の取得をしたいです。 以下の様に作成しましたが、実行結果、何も表示されません。 <?php $file = basename($_SERVER["PHP_SELF"]); $url = "http://" . $_SERVER["SERVER_NAME"].$_SERVER['REQUEST_URI']; preg_match("/".$file."\/(.+$)/",$url,$match); $get = $match[1]; print $get; ?> 記述ミスでしょうか? 困っています。教えて下さい。
- みんなの回答 (4)
- 専門家の回答
質問者が選んだベストアンサー
その他の回答 (3)
- php504
- ベストアンサー率42% (926/2160)
回答No.4
- karumakaruma
- ベストアンサー率65% (65/100)
回答No.3
- dell_OK
- ベストアンサー率13% (776/5751)
回答No.2