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 を使用して curl から送信されたデータを取得しようとしていますが、表示されません。
私はコンソール経由で実行しています:
curl -d "tests_123" "http://www.example.com/capture.php"
そして私はcapture.phpにあります
print_r($_POST); print_r($_GET); print_r($_REQUEST);
しかし、何も表示されません。
私は何か間違ったことをしていますか?