我有一个像
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
我能怎么做?
谢谢