私は次のようなURLを持っています
test.php?x=hello+world&y=%00h%00e%00l%00l%00o
ファイルに書き込むとき
file_put_contents('x.txt', $_GET['x']); // -->hello world
file_put_contents('y.txt', $_GET['y']); // -->\0h\0e\0l\0l\0o
しかし、エンコードせずに書き込む必要があります
file_put_contents('x.txt', ????); // -->hello+world
file_put_contents('y.txt', ????); // -->%00h%00e%00l%00l%00o
どのようにできるのか?
ありがとう