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 には予約変数のリストがあります。こちらをご覧ください。予約済みキーワードの 1 つを変数として使用すると、うまくいきます。
<?php $_GET = 10; echo $_GET;//10 ?>
私の理解が間違っている場合は、修正してください。
「事前定義」は「予約済み」と同じではありません。PHP はこれらの変数にデフォルト値を与えますが、独自の目的のためにそれらの名前を使用することもできます。しかし、スタイルが悪いので、そうすべきではありません。