Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
.php ページに渡された GET (URL) 変数を取得する最良の方法は何ですか?
URLが次の場合exmaple.com/file.php?var=value、「値」はに保存されます$_GET['var']
exmaple.com/file.php?var=value
$_GET['var']
GET リクエストが次の形式であるとしますpage.php?var=1。
page.php?var=1
<?php if (isset($_GET['var'])) { echo $_GET['xyz']; } ?>
ただし、PHP フレームワークを使用している場合は、別の方法が提供される場合があります。